Mark that the return is using EAX so that we don't use it for some other
[llvm.git] / test / ExecutionEngine / 2003-05-06-LivenessClobber.ll
blobe670d11d4a1551ddf1556af64f2f6d67766fc02c
1 ; This testcase should return with an exit code of 1.
3 ; RUN: not lli %s
5 @test = global i64 0            ; <i64*> [#uses=1]
7 define internal i64 @test.upgrd.1() {
8         %tmp.0 = load i64* @test                ; <i64> [#uses=1]
9         %tmp.1 = add i64 %tmp.0, 1              ; <i64> [#uses=1]
10         ret i64 %tmp.1
13 define i32 @main() {
14         %L = call i64 @test.upgrd.1( )          ; <i64> [#uses=1]
15         %I = trunc i64 %L to i32                ; <i32> [#uses=1]
16         ret i32 %I