diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/XCore/cos.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/XCore/exp.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/XCore/exp2.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/XCore/fneg.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/XCore/log.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/XCore/log10.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/XCore/log2.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/XCore/sin.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/XCore/sqrt.ll | 1 |
9 files changed, 0 insertions, 9 deletions
diff --git a/test/CodeGen/XCore/cos.ll b/test/CodeGen/XCore/cos.ll index d19ec28..334f0d5 100644 --- a/test/CodeGen/XCore/cos.ll +++ b/test/CodeGen/XCore/cos.ll @@ -1,7 +1,6 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl cosf" %t1.s | count 1 ; RUN: grep "bl cos" %t1.s | count 2 -; XFAIL: * declare double @llvm.cos.f64(double) define double @test(double %F) { diff --git a/test/CodeGen/XCore/exp.ll b/test/CodeGen/XCore/exp.ll index 582b06e..8412e7a 100644 --- a/test/CodeGen/XCore/exp.ll +++ b/test/CodeGen/XCore/exp.ll @@ -1,7 +1,6 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl expf" %t1.s | count 1 ; RUN: grep "bl exp" %t1.s | count 2 -; XFAIL: * declare double @llvm.exp.f64(double) define double @test(double %F) { diff --git a/test/CodeGen/XCore/exp2.ll b/test/CodeGen/XCore/exp2.ll index 17f2428..a53b767 100644 --- a/test/CodeGen/XCore/exp2.ll +++ b/test/CodeGen/XCore/exp2.ll @@ -1,7 +1,6 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl exp2f" %t1.s | count 1 ; RUN: grep "bl exp2" %t1.s | count 2 -; XFAIL: * declare double @llvm.exp2.f64(double) define double @test(double %F) { diff --git a/test/CodeGen/XCore/fneg.ll b/test/CodeGen/XCore/fneg.ll index ab69c20..ac30410 100644 --- a/test/CodeGen/XCore/fneg.ll +++ b/test/CodeGen/XCore/fneg.ll @@ -1,6 +1,5 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl __subdf3" %t1.s | count 1 -; XFAIL: * define i1 @test(double %F) nounwind { entry: %0 = sub double -0.000000e+00, %F diff --git a/test/CodeGen/XCore/log.ll b/test/CodeGen/XCore/log.ll index da08506..88d9d7f 100644 --- a/test/CodeGen/XCore/log.ll +++ b/test/CodeGen/XCore/log.ll @@ -1,7 +1,6 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl logf" %t1.s | count 1 ; RUN: grep "bl log" %t1.s | count 2 -; XFAIL: * declare double @llvm.log.f64(double) define double @test(double %F) { diff --git a/test/CodeGen/XCore/log10.ll b/test/CodeGen/XCore/log10.ll index 324e2cc..f844d8f 100644 --- a/test/CodeGen/XCore/log10.ll +++ b/test/CodeGen/XCore/log10.ll @@ -1,7 +1,6 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl log10f" %t1.s | count 1 ; RUN: grep "bl log10" %t1.s | count 2 -; XFAIL: * declare double @llvm.log10.f64(double) define double @test(double %F) { diff --git a/test/CodeGen/XCore/log2.ll b/test/CodeGen/XCore/log2.ll index f9069e0..b8a3dbd 100644 --- a/test/CodeGen/XCore/log2.ll +++ b/test/CodeGen/XCore/log2.ll @@ -1,7 +1,6 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl log2f" %t1.s | count 1 ; RUN: grep "bl log2" %t1.s | count 2 -; XFAIL: * declare double @llvm.log2.f64(double) define double @test(double %F) { diff --git a/test/CodeGen/XCore/sin.ll b/test/CodeGen/XCore/sin.ll index 6789c68..41aab67 100644 --- a/test/CodeGen/XCore/sin.ll +++ b/test/CodeGen/XCore/sin.ll @@ -1,7 +1,6 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl sinf" %t1.s | count 1 ; RUN: grep "bl sin" %t1.s | count 2 -; XFAIL: * declare double @llvm.sin.f64(double) define double @test(double %F) { diff --git a/test/CodeGen/XCore/sqrt.ll b/test/CodeGen/XCore/sqrt.ll index c014436..221d1ac 100644 --- a/test/CodeGen/XCore/sqrt.ll +++ b/test/CodeGen/XCore/sqrt.ll @@ -1,7 +1,6 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl sqrtf" %t1.s | count 1 ; RUN: grep "bl sqrt" %t1.s | count 2 -; XFAIL: * declare double @llvm.sqrt.f64(double) define double @test(double %F) { |