[llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/floor.ll
Chris Lattner
lattner at cs.uiuc.edu
Sun Jan 22 21:56:45 PST 2006
Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls:
floor.ll updated: 1.1 -> 1.2
---
Log message:
Make sure this tests the right thing, xfail on solaris, which doesn't have floorf
---
Diffs of the changes: (+4 -1)
floor.ll | 5 ++++-
1 files changed, 4 insertions(+), 1 deletion(-)
Index: llvm/test/Regression/Transforms/SimplifyLibCalls/floor.ll
diff -u llvm/test/Regression/Transforms/SimplifyLibCalls/floor.ll:1.1 llvm/test/Regression/Transforms/SimplifyLibCalls/floor.ll:1.2
--- llvm/test/Regression/Transforms/SimplifyLibCalls/floor.ll:1.1 Wed Aug 24 12:20:30 2005
+++ llvm/test/Regression/Transforms/SimplifyLibCalls/floor.ll Sun Jan 22 23:56:34 2006
@@ -1,4 +1,7 @@
-; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*floor('
+; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*floor(' &&
+; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | grep 'call.*floorf('
+
+; XFAIL: sparc
declare double %floor(double)
More information about the llvm-commits
mailing list