Remove llvm-upgrade and update tests.
[oota-llvm.git] / test / ExecutionEngine / 2003-05-06-LivenessClobber.llx
index ea3f14b5128459ad3fe626a2ac59bac0d57b21db..57fe95b2d915b38ceaed4d6159fbf0117d440f7b 100644 (file)
@@ -1,20 +1,19 @@
 ; This testcase shoudl return with an exit code of 1.
 ;
-; RUN: llvm-upgrade < %s | llvm-as | not lli
+; RUN: llvm-as < %s | not lli
 
-%test = global long 0
-implementation
+@test = global i64 0           ; <i64*> [#uses=1]
 
-
-internal long %test() {
-        %tmp.0 = load long* %test               ; <long> [#uses=1]
-        %tmp.1 = add long %tmp.0, 1             ; <long> [#uses=1]
-        ret long %tmp.1
+define internal i64 @test.upgrd.1() {
+       %tmp.0 = load i64* @test                ; <i64> [#uses=1]
+       %tmp.1 = add i64 %tmp.0, 1              ; <i64> [#uses=1]
+       ret i64 %tmp.1
 }
 
-int %main() {
-       %L = call long %test()
-       %I = cast long %L to int
-       ret int %I
+define i32 @main() {
+       %L = call i64 @test.upgrd.1( )          ; <i64> [#uses=1]
+       %I = trunc i64 %L to i32                ; <i32> [#uses=1]
+       ret i32 %I
 }
 
+