From: Saleem Abdulrasool Date: Wed, 23 Apr 2014 21:41:07 +0000 (+0000) Subject: MC: move test from Generic to COFF X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ac30dfdaa3be63e92f6e8d4ee452106d9a962125;p=oota-llvm.git MC: move test from Generic to COFF This is a COFF specific test, move it to COFF to fix the Hexagon buildbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207030 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/Generic/initialised-data.ll b/test/CodeGen/Generic/initialised-data.ll deleted file mode 100644 index 9f428bc3fdb..00000000000 --- a/test/CodeGen/Generic/initialised-data.ll +++ /dev/null @@ -1,8 +0,0 @@ -; RUN: llc -mtriple i686-windows %s -o - | FileCheck %s -; RUN: llc -mtriple x86_64-windows %s -o - | FileCheck %s -; RUN: llc -mtriple thumbv7-windows %s -o - | FileCheck %s - -@data = dllexport constant [5 x i8] c"data\00", align 1 - -; CHECK: .section .rdata,"rd" - diff --git a/test/MC/COFF/initialised-data.ll b/test/MC/COFF/initialised-data.ll new file mode 100644 index 00000000000..9f428bc3fdb --- /dev/null +++ b/test/MC/COFF/initialised-data.ll @@ -0,0 +1,8 @@ +; RUN: llc -mtriple i686-windows %s -o - | FileCheck %s +; RUN: llc -mtriple x86_64-windows %s -o - | FileCheck %s +; RUN: llc -mtriple thumbv7-windows %s -o - | FileCheck %s + +@data = dllexport constant [5 x i8] c"data\00", align 1 + +; CHECK: .section .rdata,"rd" +