aboutsummaryrefslogtreecommitdiffstats
path: root/test
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
commit6b9dc0ae60d25bf60e39a88cea20b1006d2008b6 (patch)
tree860b04ef5b0cfd74f1f82ec85880f32ac131ac6d /test
parent73777c665d247f213383fe2dec05d16417492ea9 (diff)
downloadexternal_llvm-6b9dc0ae60d25bf60e39a88cea20b1006d2008b6.zip
external_llvm-6b9dc0ae60d25bf60e39a88cea20b1006d2008b6.tar.gz
external_llvm-6b9dc0ae60d25bf60e39a88cea20b1006d2008b6.tar.bz2
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')
-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 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) {