Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / sibcall-2.ll
bloba4345cf28335facd515c3d99d837a2cce3600099
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=i386-apple-darwin   -frame-pointer=all | FileCheck %s -check-prefix=32
2 ; RUN: llc -verify-machineinstrs < %s -mtriple=x86_64-apple-darwin -frame-pointer=all | FileCheck %s -check-prefix=64
4 ; Tail call should not use ebp / rbp after it's popped. Use esp / rsp.
6 define void @t1(ptr nocapture %value) nounwind {
7 entry:
8 ; 32-LABEL: t1:
9 ; 32: jmpl *4(%esp)
11 ; 64-LABEL: t1:
12 ; 64: jmpq *%rdi
13   tail call void %value() nounwind
14   ret void
17 define void @t2(i32 %a, ptr nocapture %value) nounwind {
18 entry:
19 ; 32-LABEL: t2:
20 ; 32: jmpl *8(%esp)
22 ; 64-LABEL: t2:
23 ; 64: jmpq *%rsi
24   tail call void %value() nounwind
25   ret void
28 define void @t3(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e, i32 %f, ptr nocapture %value) nounwind {
29 entry:
30 ; 32-LABEL: t3:
31 ; 32: jmpl *28(%esp)
33 ; 64-LABEL: t3:
34 ; 64: jmpq *8(%rsp)
35   tail call void %value() nounwind
36   ret void
39 define void @t4(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e, i32 %f, i32 %g, ptr nocapture %value) nounwind {
40 entry:
41 ; 32-LABEL: t4:
42 ; 32: jmpl *32(%esp)
44 ; 64-LABEL: t4:
45 ; 64: jmpq *16(%rsp)
46   tail call void %value() nounwind
47   ret void