[llvm-commits] CVS: llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll

Reid Spencer reid at x10sys.com
Sun Nov 26 17:06:23 PST 2006



Changes in directory llvm/test/Regression/Transforms/IPConstantProp:

return-constant.ll updated: 1.2 -> 1.3
---
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)

 return-constant.ll |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll
diff -u llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll:1.2 llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll:1.3
--- llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll:1.2	Sun Nov 14 00:11:41 2004
+++ llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll	Sun Nov 26 19:05:10 2006
@@ -11,6 +11,6 @@
 
 bool %caller(bool %C) {
 	%X = call int %foo(bool %C)
-	%Y = cast int %X to bool
+	%Y = trunc int %X to bool
 	ret bool %Y
 }






More information about the llvm-commits mailing list