[llvm-commits] CVS: llvm/test/Regression/CodeGen/CBackend/2003-06-23-PromotedExprs.llx
Reid Spencer
reid at x10sys.com
Sun Nov 26 17:06:25 PST 2006
Changes in directory llvm/test/Regression/CodeGen/CBackend:
2003-06-23-PromotedExprs.llx updated: 1.5 -> 1.6
---
Log message:
For PR950: http://llvm.org/PR950 :
The long awaited CAST patch. This introduces 12 new instructions into LLVM
to replace the cast instruction. Corresponding changes throughout LLVM are
provided. This passes llvm-test, llvm/test, and SPEC CPUINT2000 with the
exception of 175.vpr which fails only on a slight floating point output
difference.
---
Diffs of the changes: (+1 -1)
2003-06-23-PromotedExprs.llx | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/test/Regression/CodeGen/CBackend/2003-06-23-PromotedExprs.llx
diff -u llvm/test/Regression/CodeGen/CBackend/2003-06-23-PromotedExprs.llx:1.5 llvm/test/Regression/CodeGen/CBackend/2003-06-23-PromotedExprs.llx:1.6
--- llvm/test/Regression/CodeGen/CBackend/2003-06-23-PromotedExprs.llx:1.5 Fri Feb 13 17:33:17 2004
+++ llvm/test/Regression/CodeGen/CBackend/2003-06-23-PromotedExprs.llx Sun Nov 26 19:05:10 2006
@@ -5,7 +5,7 @@
bool %doTest(ubyte %x) {
%dec.0 = add ubyte %x, 255
- %tmp.1001 = cast ubyte %dec.0 to bool
+ %tmp.1001 = trunc ubyte %dec.0 to bool
ret bool %tmp.1001
}
More information about the llvm-commits
mailing list