[llvm-commits] CVS: llvm/test/Regression/CFrontend/2006-12-14-ordered_expr.c
Reid Spencer
reid at x10sys.com
Fri Dec 22 22:07:00 PST 2006
Changes in directory llvm/test/Regression/CFrontend:
2006-12-14-ordered_expr.c updated: 1.1 -> 1.2
---
Log message:
For PR950: http://llvm.org/PR950 :
This patch removes the SetCC instructions and replaces them with the ICmp
and FCmp instructions. The SetCondInst instruction has been removed and
been replaced with ICmpInst and FCmpInst.
---
Diffs of the changes: (+1 -2)
2006-12-14-ordered_expr.c | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/test/Regression/CFrontend/2006-12-14-ordered_expr.c
diff -u llvm/test/Regression/CFrontend/2006-12-14-ordered_expr.c:1.1 llvm/test/Regression/CFrontend/2006-12-14-ordered_expr.c:1.2
--- llvm/test/Regression/CFrontend/2006-12-14-ordered_expr.c:1.1 Fri Dec 15 00:49:20 2006
+++ llvm/test/Regression/CFrontend/2006-12-14-ordered_expr.c Sat Dec 23 00:05:41 2006
@@ -1,5 +1,4 @@
-// RUN: %llvmgcc -O3 -S %s -o - | grep llvm.isunordered &&
-// RUN: %llvmgcc -O3 -S %s -o - | grep xor
+// RUN: %llvmgcc -O3 -S %s -o - | grep 'fcmp ord float %X, %Y'
int test2(float X, float Y) {
return !__builtin_isunordered(X, Y);
More information about the llvm-commits
mailing list