[llvm-commits] CVS: llvm/test/ExecutionEngine/test-fp.ll

Reid Spencer reid at x10sys.com
Thu Feb 1 13:59:02 PST 2007



Changes in directory llvm/test/ExecutionEngine:

test-fp.ll updated: 1.6 -> 1.7
---
Log message:

Make sure the value passed to test function is initialized.


---
Diffs of the changes:  (+1 -0)

 test-fp.ll |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/test/ExecutionEngine/test-fp.ll
diff -u llvm/test/ExecutionEngine/test-fp.ll:1.6 llvm/test/ExecutionEngine/test-fp.ll:1.7
--- llvm/test/ExecutionEngine/test-fp.ll:1.6	Sun Dec  3 10:17:19 2006
+++ llvm/test/ExecutionEngine/test-fp.ll	Thu Feb  1 15:58:46 2007
@@ -18,6 +18,7 @@
 
 int %main() { 
   %X = alloca double
+  store double 0.0, double* %X
   call double %test(double* %X, double 2.0)
   ret int 0 
 }






More information about the llvm-commits mailing list