blob: 1fd2d72dc570e1d8a104d42ea19adde9f3c81588 [file] [log] [blame]
Nick Lewyckyecc00842012-01-19 00:34:10 +00001; RUN: llc -disable-tail-calls < %s | FileCheck --check-prefix=CALL %s
2; RUN: llc < %s | FileCheck --check-prefix=JMP %s
3
4target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
5target triple = "x86_64-unknown-linux-gnu"
6
7define i32 @helper() nounwind {
8entry:
9 ret i32 7
10}
11
12define i32 @test1() nounwind {
13entry:
14 %call = tail call i32 @helper()
15 ret i32 %call
16}
17
Stephen Linf799e3f2013-07-13 20:38:47 +000018; CALL-LABEL: test1:
Nick Lewycky9e2c7f62012-01-19 01:13:47 +000019; CALL-NOT: ret
20; CALL: callq helper
21; CALL: ret
Nick Lewyckyecc00842012-01-19 00:34:10 +000022
Stephen Linf799e3f2013-07-13 20:38:47 +000023; JMP-LABEL: test1:
Nick Lewycky9e2c7f62012-01-19 01:13:47 +000024; JMP-NOT: ret
25; JMP: jmp helper # TAILCALL
Nick Lewyckyecc00842012-01-19 00:34:10 +000026
27define i32 @test2() nounwind {
28entry:
29 %call = tail call i32 @test2()
30 ret i32 %call
31}
32
Stephen Linf799e3f2013-07-13 20:38:47 +000033; CALL-LABEL: test2:
Nick Lewycky9e2c7f62012-01-19 01:13:47 +000034; CALL-NOT: ret
35; CALL: callq test2
36; CALL: ret
Nick Lewyckyecc00842012-01-19 00:34:10 +000037
Stephen Linf799e3f2013-07-13 20:38:47 +000038; JMP-LABEL: test2:
Nick Lewycky9e2c7f62012-01-19 01:13:47 +000039; JMP-NOT: ret
40; JMP: jmp test2 # TAILCALL