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

Chris Lattner sabre at nondot.org
Fri Dec 1 13:38:17 PST 2006



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

return-constant.ll updated: 1.3 -> 1.4
---
Log message:

fix incorrectly translated testcase


---
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.3 llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll:1.4
--- llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll:1.3	Sun Nov 26 19:05:10 2006
+++ llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll	Fri Dec  1 15:38:02 2006
@@ -11,6 +11,6 @@
 
 bool %caller(bool %C) {
 	%X = call int %foo(bool %C)
-	%Y = trunc int %X to bool
+	%Y = setne int %X, 0
 	ret bool %Y
 }






More information about the llvm-commits mailing list