aboutsummaryrefslogtreecommitdiffstats
path: root/test/Bitcode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-02-17 00:15:25 +0000
committerChris Lattner <sabre@nondot.org>2008-02-17 00:15:25 +0000
commit5f137244c2908bc36d0d6ee651db42b62e843114 (patch)
treee5b835e935ff5911c0e0e9c1d4778aa1bead9606 /test/Bitcode
parentd349a4eda18a2d424a0596ddd56f619d79f4026d (diff)
downloadexternal_llvm-5f137244c2908bc36d0d6ee651db42b62e843114.zip
external_llvm-5f137244c2908bc36d0d6ee651db42b62e843114.tar.gz
external_llvm-5f137244c2908bc36d0d6ee651db42b62e843114.tar.bz2
fix this test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47232 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Bitcode')
-rw-r--r--test/Bitcode/2006-12-11-Cast-ConstExpr.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Bitcode/2006-12-11-Cast-ConstExpr.ll b/test/Bitcode/2006-12-11-Cast-ConstExpr.ll
index 7e6bb7b..6df8711 100644
--- a/test/Bitcode/2006-12-11-Cast-ConstExpr.ll
+++ b/test/Bitcode/2006-12-11-Cast-ConstExpr.ll
@@ -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)
}