blob: d714bf7367bc09a55b4226032f3fc512aaaae731 [file] [log] [blame]
Danil Malyshev7c5db452012-05-17 21:07:47 +00001; This testcase should return with an exit code of 1.
2;
Eric Christopher79cc1e32014-09-02 22:28:02 +00003; RUN: not %lli %s
Danil Malyshev7c5db452012-05-17 21:07:47 +00004
5@test = global i64 0 ; <i64*> [#uses=1]
6
7define internal i64 @test.upgrd.1() {
David Blaikiea79ac142015-02-27 21:17:42 +00008 %tmp.0 = load i64, i64* @test ; <i64> [#uses=1]
Danil Malyshev7c5db452012-05-17 21:07:47 +00009 %tmp.1 = add i64 %tmp.0, 1 ; <i64> [#uses=1]
10 ret i64 %tmp.1
11}
12
13define 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
17}
18
19