Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / X86 / sibcall-2.ll
blobca42fbafde14f72cc5991e8f71063434fcac09e5
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=i386-apple-darwin   -frame-pointer=all | FileCheck %s -check-prefix=X86
2 ; RUN: llc -verify-machineinstrs < %s -mtriple=x86_64-apple-darwin -frame-pointer=all | FileCheck %s -check-prefix=X64
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 ; X86-LABEL: t1:
9 ; X86: jmpl *4(%esp)
11 ; X64-LABEL: t1:
12 ; X64: jmpq *%rdi
13   tail call void %value() nounwind
14   ret void
17 define void @t2(i32 %a, ptr nocapture %value) nounwind {
18 entry:
19 ; X86-LABEL: t2:
20 ; X86: jmpl *8(%esp)
22 ; X64-LABEL: t2:
23 ; X64: 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 ; X86-LABEL: t3:
31 ; X86: jmpl *28(%esp)
33 ; X64-LABEL: t3:
34 ; X64: 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 ; X86-LABEL: t4:
42 ; X86: jmpl *32(%esp)
44 ; X64-LABEL: t4:
45 ; X64: jmpq *16(%rsp)
46   tail call void %value() nounwind
47   ret void