aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/XCore
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-11-18 09:15:03 +0000
committerDuncan Sands <baldrick@free.fr>2008-11-18 09:15:03 +0000
commit51d83fdd89e6e942a4e6932cd5d02b427d2aa5aa (patch)
tree860b04ef5b0cfd74f1f82ec85880f32ac131ac6d /test/CodeGen/XCore
parentc4ae87ac76936f5eb9db1fe56ec84e36f3b02516 (diff)
Reapply r59464, this time using the correct type
when softening FNEG. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59513 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/XCore')
-rw-r--r--test/CodeGen/XCore/cos.ll1
-rw-r--r--test/CodeGen/XCore/exp.ll1
-rw-r--r--test/CodeGen/XCore/exp2.ll1
-rw-r--r--test/CodeGen/XCore/fneg.ll1
-rw-r--r--test/CodeGen/XCore/log.ll1
-rw-r--r--test/CodeGen/XCore/log10.ll1
-rw-r--r--test/CodeGen/XCore/log2.ll1
-rw-r--r--test/CodeGen/XCore/sin.ll1
-rw-r--r--test/CodeGen/XCore/sqrt.ll1
9 files changed, 0 insertions, 9 deletions
diff --git a/test/CodeGen/XCore/cos.ll b/test/CodeGen/XCore/cos.ll
index d19ec284de..334f0d5056 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 582b06e428..8412e7a599 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 17f24284b5..a53b767ad0 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 ab69c20064..ac30410cf8 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 da08506736..88d9d7ffcd 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 324e2ccd56..f844d8fc6a 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 f9069e0f96..b8a3dbd231 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 6789c681ea..41aab67595 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 c0144368ec..221d1ac1a7 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) {