[llvm-commits] [llvm] r47232 - /llvm/trunk/test/Bitcode/2006-12-11-Cast-ConstExpr.ll

Chris Lattner sabre at nondot.org
Sat Feb 16 16:15:25 PST 2008


Author: lattner
Date: Sat Feb 16 18:15:25 2008
New Revision: 47232

URL: http://llvm.org/viewvc/llvm-project?rev=47232&view=rev
Log:
fix this test.

Modified:
    llvm/trunk/test/Bitcode/2006-12-11-Cast-ConstExpr.ll

Modified: llvm/trunk/test/Bitcode/2006-12-11-Cast-ConstExpr.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Bitcode/2006-12-11-Cast-ConstExpr.ll?rev=47232&r1=47231&r2=47232&view=diff

==============================================================================
--- llvm/trunk/test/Bitcode/2006-12-11-Cast-ConstExpr.ll (original)
+++ llvm/trunk/test/Bitcode/2006-12-11-Cast-ConstExpr.ll Sat Feb 16 18:15:25 2008
@@ -6,5 +6,5 @@
 @G = external global i32
 
 define float @tryit(i32 %A) {
-   ret float sitofp( i32 ptrtoint (i32* @G to i32) to float)
+   ret float bitcast( i32 ptrtoint (i32* @G to i32) to float)
 }





More information about the llvm-commits mailing list