diff options
Diffstat (limited to 'llvm/test/CodeGen/XCore')
31 files changed, 31 insertions, 31 deletions
diff --git a/llvm/test/CodeGen/XCore/2008-11-17-Shl64.ll b/llvm/test/CodeGen/XCore/2008-11-17-Shl64.ll index 97ea41b8d0c..04b1b5a0016 100644 --- a/llvm/test/CodeGen/XCore/2008-11-17-Shl64.ll +++ b/llvm/test/CodeGen/XCore/2008-11-17-Shl64.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; PR3080 define i64 @test(i64 %a) { %result = shl i64 %a, 1 diff --git a/llvm/test/CodeGen/XCore/2009-01-08-Crash.ll b/llvm/test/CodeGen/XCore/2009-01-08-Crash.ll index 6f5fb7c6871..a31ea1e2e9b 100644 --- a/llvm/test/CodeGen/XCore/2009-01-08-Crash.ll +++ b/llvm/test/CodeGen/XCore/2009-01-08-Crash.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ;; This caused a compilation failure since the ;; address arithmetic was folded into the LDWSP instruction, ;; resulting in a negative offset which eliminateFrameIndex was diff --git a/llvm/test/CodeGen/XCore/2009-01-14-Remat-Crash.ll b/llvm/test/CodeGen/XCore/2009-01-14-Remat-Crash.ll index b9333c94abe..b2bbcb1183d 100644 --- a/llvm/test/CodeGen/XCore/2009-01-14-Remat-Crash.ll +++ b/llvm/test/CodeGen/XCore/2009-01-14-Remat-Crash.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; PR3324 define double @f1(double %a, double %b, double %c, double %d, double %e, double %f, double %g) nounwind { entry: diff --git a/llvm/test/CodeGen/XCore/2009-03-27-v2f64-param.ll b/llvm/test/CodeGen/XCore/2009-03-27-v2f64-param.ll index e834d66df24..a6b9699987e 100644 --- a/llvm/test/CodeGen/XCore/2009-03-27-v2f64-param.ll +++ b/llvm/test/CodeGen/XCore/2009-03-27-v2f64-param.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore +; RUN: llc < %s -march=xcore ; PR3898 define i32 @vector_param(<2 x double> %x) nounwind { diff --git a/llvm/test/CodeGen/XCore/2009-07-15-store192.ll b/llvm/test/CodeGen/XCore/2009-07-15-store192.ll index 874d8dc3d7f..5278af8ac22 100644 --- a/llvm/test/CodeGen/XCore/2009-07-15-store192.ll +++ b/llvm/test/CodeGen/XCore/2009-07-15-store192.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s define void @store32(i8* %p) nounwind { entry: %0 = bitcast i8* %p to i192* diff --git a/llvm/test/CodeGen/XCore/addsub64.ll b/llvm/test/CodeGen/XCore/addsub64.ll index 41224fca1cc..a1494adfcc4 100644 --- a/llvm/test/CodeGen/XCore/addsub64.ll +++ b/llvm/test/CodeGen/XCore/addsub64.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore -mcpu=xs1b-generic > %t1.s +; RUN: llc < %s -march=xcore -mcpu=xs1b-generic > %t1.s ; RUN: grep ladd %t1.s | count 2 ; RUN: grep lsub %t1.s | count 2 define i64 @add64(i64 %a, i64 %b) { diff --git a/llvm/test/CodeGen/XCore/basictest.ll b/llvm/test/CodeGen/XCore/basictest.ll index 803ffcb74cc..de5eaff0807 100644 --- a/llvm/test/CodeGen/XCore/basictest.ll +++ b/llvm/test/CodeGen/XCore/basictest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore +; RUN: llc < %s -march=xcore define i32 @test(i32 %X) { %tmp.1 = add i32 %X, 1 diff --git a/llvm/test/CodeGen/XCore/bitrev.ll b/llvm/test/CodeGen/XCore/bitrev.ll index 38f39486976..09202d36567 100644 --- a/llvm/test/CodeGen/XCore/bitrev.ll +++ b/llvm/test/CodeGen/XCore/bitrev.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep bitrev %t1.s | count 1 declare i32 @llvm.xcore.bitrev(i32) diff --git a/llvm/test/CodeGen/XCore/constants.ll b/llvm/test/CodeGen/XCore/constants.ll index 8ba8b5c6a76..95fa11e7747 100644 --- a/llvm/test/CodeGen/XCore/constants.ll +++ b/llvm/test/CodeGen/XCore/constants.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore -mcpu=xs1b-generic | FileCheck %s +; RUN: llc < %s -march=xcore -mcpu=xs1b-generic | FileCheck %s ; CHECK: .section .cp.rodata.cst4,"aMc",@progbits,4 ; CHECK: .LCPI1_0: diff --git a/llvm/test/CodeGen/XCore/cos.ll b/llvm/test/CodeGen/XCore/cos.ll index 334f0d50561..8211f85b9bc 100644 --- a/llvm/test/CodeGen/XCore/cos.ll +++ b/llvm/test/CodeGen/XCore/cos.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl cosf" %t1.s | count 1 ; RUN: grep "bl cos" %t1.s | count 2 declare double @llvm.cos.f64(double) diff --git a/llvm/test/CodeGen/XCore/exp.ll b/llvm/test/CodeGen/XCore/exp.ll index 8412e7a5995..d23d484ed62 100644 --- a/llvm/test/CodeGen/XCore/exp.ll +++ b/llvm/test/CodeGen/XCore/exp.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl expf" %t1.s | count 1 ; RUN: grep "bl exp" %t1.s | count 2 declare double @llvm.exp.f64(double) diff --git a/llvm/test/CodeGen/XCore/exp2.ll b/llvm/test/CodeGen/XCore/exp2.ll index a53b767ad0d..4c4d17f4bbf 100644 --- a/llvm/test/CodeGen/XCore/exp2.ll +++ b/llvm/test/CodeGen/XCore/exp2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl exp2f" %t1.s | count 1 ; RUN: grep "bl exp2" %t1.s | count 2 declare double @llvm.exp2.f64(double) diff --git a/llvm/test/CodeGen/XCore/fneg.ll b/llvm/test/CodeGen/XCore/fneg.ll index 3bcb7c7f979..e3dd3dd45c2 100644 --- a/llvm/test/CodeGen/XCore/fneg.ll +++ b/llvm/test/CodeGen/XCore/fneg.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore | grep "xor" | count 1 +; RUN: llc < %s -march=xcore | grep "xor" | count 1 define i1 @test(double %F) nounwind { entry: %0 = fsub double -0.000000e+00, %F diff --git a/llvm/test/CodeGen/XCore/getid.ll b/llvm/test/CodeGen/XCore/getid.ll index 810e8ad6e75..ecab65c0e92 100644 --- a/llvm/test/CodeGen/XCore/getid.ll +++ b/llvm/test/CodeGen/XCore/getid.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "get r11, id" %t1.s | count 1 declare i32 @llvm.xcore.getid() diff --git a/llvm/test/CodeGen/XCore/globals.ll b/llvm/test/CodeGen/XCore/globals.ll index 9bc0f53de71..342e5932dd1 100644 --- a/llvm/test/CodeGen/XCore/globals.ll +++ b/llvm/test/CodeGen/XCore/globals.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore -mcpu=xs1b-generic | FileCheck %s +; RUN: llc < %s -march=xcore -mcpu=xs1b-generic | FileCheck %s define i32 *@addr_G1() { entry: diff --git a/llvm/test/CodeGen/XCore/load.ll b/llvm/test/CodeGen/XCore/load.ll index 1c483a145cd..adfea212a27 100644 --- a/llvm/test/CodeGen/XCore/load.ll +++ b/llvm/test/CodeGen/XCore/load.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: not grep add %t1.s ; RUN: not grep ldaw %t1.s ; RUN: not grep lda16 %t1.s diff --git a/llvm/test/CodeGen/XCore/log.ll b/llvm/test/CodeGen/XCore/log.ll index 88d9d7ffcd3..a08471f48e4 100644 --- a/llvm/test/CodeGen/XCore/log.ll +++ b/llvm/test/CodeGen/XCore/log.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl logf" %t1.s | count 1 ; RUN: grep "bl log" %t1.s | count 2 declare double @llvm.log.f64(double) diff --git a/llvm/test/CodeGen/XCore/log10.ll b/llvm/test/CodeGen/XCore/log10.ll index f844d8fc6a2..a72b8bfaf6b 100644 --- a/llvm/test/CodeGen/XCore/log10.ll +++ b/llvm/test/CodeGen/XCore/log10.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl log10f" %t1.s | count 1 ; RUN: grep "bl log10" %t1.s | count 2 declare double @llvm.log10.f64(double) diff --git a/llvm/test/CodeGen/XCore/log2.ll b/llvm/test/CodeGen/XCore/log2.ll index b8a3dbd2317..d257433a01a 100644 --- a/llvm/test/CodeGen/XCore/log2.ll +++ b/llvm/test/CodeGen/XCore/log2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl log2f" %t1.s | count 1 ; RUN: grep "bl log2" %t1.s | count 2 declare double @llvm.log2.f64(double) diff --git a/llvm/test/CodeGen/XCore/pow.ll b/llvm/test/CodeGen/XCore/pow.ll index a7b6318c109..b461185b7fd 100644 --- a/llvm/test/CodeGen/XCore/pow.ll +++ b/llvm/test/CodeGen/XCore/pow.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl powf" %t1.s | count 1 ; RUN: grep "bl pow" %t1.s | count 2 declare double @llvm.pow.f64(double, double) diff --git a/llvm/test/CodeGen/XCore/powi.ll b/llvm/test/CodeGen/XCore/powi.ll index 30e6d7ea88f..de31cbed00c 100644 --- a/llvm/test/CodeGen/XCore/powi.ll +++ b/llvm/test/CodeGen/XCore/powi.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl __powidf2" %t1.s | count 1 ; RUN: grep "bl __powisf2" %t1.s | count 1 declare double @llvm.powi.f64(double, i32) diff --git a/llvm/test/CodeGen/XCore/private.ll b/llvm/test/CodeGen/XCore/private.ll index 888ccdf297d..9a2f5b32dc3 100644 --- a/llvm/test/CodeGen/XCore/private.ll +++ b/llvm/test/CodeGen/XCore/private.ll @@ -1,6 +1,6 @@ ; Test to make sure that the 'private' is used correctly. ; -; RUN: llvm-as < %s | llc -march=xcore > %t +; RUN: llc < %s -march=xcore > %t ; RUN: grep .Lfoo: %t ; RUN: grep bl.*\.Lfoo %t ; RUN: grep .Lbaz: %t diff --git a/llvm/test/CodeGen/XCore/sext.ll b/llvm/test/CodeGen/XCore/sext.ll index 905bcc462f4..9cd4ad66a5c 100644 --- a/llvm/test/CodeGen/XCore/sext.ll +++ b/llvm/test/CodeGen/XCore/sext.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore | FileCheck %s +; RUN: llc < %s -march=xcore | FileCheck %s define i32 @sext1(i32 %a) { %1 = trunc i32 %a to i1 %2 = sext i1 %1 to i32 diff --git a/llvm/test/CodeGen/XCore/sin.ll b/llvm/test/CodeGen/XCore/sin.ll index 41aab675953..ced026f1d3e 100644 --- a/llvm/test/CodeGen/XCore/sin.ll +++ b/llvm/test/CodeGen/XCore/sin.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl sinf" %t1.s | count 1 ; RUN: grep "bl sin" %t1.s | count 2 declare double @llvm.sin.f64(double) diff --git a/llvm/test/CodeGen/XCore/sqrt.ll b/llvm/test/CodeGen/XCore/sqrt.ll index 221d1ac1a78..364d1a14c6a 100644 --- a/llvm/test/CodeGen/XCore/sqrt.ll +++ b/llvm/test/CodeGen/XCore/sqrt.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl sqrtf" %t1.s | count 1 ; RUN: grep "bl sqrt" %t1.s | count 2 declare double @llvm.sqrt.f64(double) diff --git a/llvm/test/CodeGen/XCore/store.ll b/llvm/test/CodeGen/XCore/store.ll index e871b343b21..2213743ff89 100644 --- a/llvm/test/CodeGen/XCore/store.ll +++ b/llvm/test/CodeGen/XCore/store.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: not grep add %t1.s ; RUN: not grep ldaw %t1.s ; RUN: not grep lda16 %t1.s diff --git a/llvm/test/CodeGen/XCore/tls.ll b/llvm/test/CodeGen/XCore/tls.ll index 8f35268d464..ed41afae099 100644 --- a/llvm/test/CodeGen/XCore/tls.ll +++ b/llvm/test/CodeGen/XCore/tls.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore -mcpu=xs1b-generic | FileCheck %s +; RUN: llc < %s -march=xcore -mcpu=xs1b-generic | FileCheck %s define i32 *@addr_G() { entry: diff --git a/llvm/test/CodeGen/XCore/trap.ll b/llvm/test/CodeGen/XCore/trap.ll index b3d3bc2270e..45f886d332a 100644 --- a/llvm/test/CodeGen/XCore/trap.ll +++ b/llvm/test/CodeGen/XCore/trap.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "ecallf" %t1.s | count 1 ; RUN: grep "ldc" %t1.s | count 1 define i32 @test() noreturn nounwind { diff --git a/llvm/test/CodeGen/XCore/unaligned_load.ll b/llvm/test/CodeGen/XCore/unaligned_load.ll index c1372ed42f9..0ee8e1c3266 100644 --- a/llvm/test/CodeGen/XCore/unaligned_load.ll +++ b/llvm/test/CodeGen/XCore/unaligned_load.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl __misaligned_load" %t1.s | count 1 ; RUN: grep ld16s %t1.s | count 2 ; RUN: grep ldw %t1.s | count 2 diff --git a/llvm/test/CodeGen/XCore/unaligned_store.ll b/llvm/test/CodeGen/XCore/unaligned_store.ll index 120d6529ece..62078e6f607 100644 --- a/llvm/test/CodeGen/XCore/unaligned_store.ll +++ b/llvm/test/CodeGen/XCore/unaligned_store.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl __misaligned_store" %t1.s | count 1 ; RUN: grep st16 %t1.s | count 2 ; RUN: grep shr %t1.s | count 1 diff --git a/llvm/test/CodeGen/XCore/unaligned_store_combine.ll b/llvm/test/CodeGen/XCore/unaligned_store_combine.ll index b61cf86988a..493ca6a975f 100644 --- a/llvm/test/CodeGen/XCore/unaligned_store_combine.ll +++ b/llvm/test/CodeGen/XCore/unaligned_store_combine.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=xcore > %t1.s +; RUN: llc < %s -march=xcore > %t1.s ; RUN: grep "bl memmove" %t1.s | count 1 ; RUN: grep "ldc r., 8" %t1.s | count 1 |

