[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/BasicInstrs.c
Chris Lattner
sabre at nondot.org
Fri Nov 3 14:01:29 PST 2006
Changes in directory llvm/test/Regression/CodeGen/Generic:
BasicInstrs.c updated: 1.4 -> 1.5
---
Log message:
this started failing due to Reid's changes in the bc format. insulate it
from future changes.
---
Diffs of the changes: (+1 -1)
BasicInstrs.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/test/Regression/CodeGen/Generic/BasicInstrs.c
diff -u llvm/test/Regression/CodeGen/Generic/BasicInstrs.c:1.4 llvm/test/Regression/CodeGen/Generic/BasicInstrs.c:1.5
--- llvm/test/Regression/CodeGen/Generic/BasicInstrs.c:1.4 Sat Apr 23 16:26:11 2005
+++ llvm/test/Regression/CodeGen/Generic/BasicInstrs.c Fri Nov 3 16:01:15 2006
@@ -1,7 +1,7 @@
// This file can be used to see what a native C compiler is generating for a
// variety of interesting operations.
//
-// RUN: %llvmgcc -c %s -o - | llc
+// RUN: %llvmgcc -S %s -o - | llvm-as | llc
unsigned int udiv(unsigned int X, unsigned int Y) {
return X/Y;
More information about the llvm-commits
mailing list