[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / ExecutionEngine / MCJIT / 2003-05-06-LivenessClobber.ll
blob8b6d2899ce8a876bba6734795644ce5c29762e30
1 ; This testcase should return with an exit code of 1.
3 ; RUN: not %lli -jit-kind=mcjit %s
4 ; RUN: not %lli %s
6 @test = global i64 0            ; <ptr> [#uses=1]
8 define internal i64 @test.upgrd.1() {
9         %tmp.0 = load i64, ptr @test            ; <i64> [#uses=1]
10         %tmp.1 = add i64 %tmp.0, 1              ; <i64> [#uses=1]
11         ret i64 %tmp.1
14 define i32 @main() {
15         %L = call i64 @test.upgrd.1( )          ; <i64> [#uses=1]
16         %I = trunc i64 %L to i32                ; <i32> [#uses=1]
17         ret i32 %I