[SimplifyLibCalls] Remove useless bits of this tests.
[oota-llvm.git] / test / Transforms / InstCombine / 2003-05-27-ConstExprCrash.ll
index 6222169e08d427f0a587d37a2fb4f2c9cff92457..8645249b7caea128d94973e4337bf12a749cff65 100644 (file)
@@ -1,8 +1,10 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output
+; RUN: opt < %s -instcombine -disable-output
 
-%X = global int 5
-long %test() {
-        %C = add long 1, 2
-       %V = add long cast(int* %X to long), %C
-       ret long %V
+@X = global i32 5               ; <i32*> [#uses=1]
+
+define i64 @test() {
+        %C = add i64 1, 2               ; <i64> [#uses=1]
+        %V = add i64 ptrtoint (i32* @X to i64), %C              ; <i64> [#uses=1]
+        ret i64 %V
 }
+