[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / indirect-branch-tracking-cm-lager.ll
blob48b9855a8ba62493f7949984c4c6adb56245f149
1 ; RUN: llc -mtriple=x86_64-unknown-unknown -code-model=large < %s | FileCheck %s
3 ; In large code model indirect branches are needed when branching to addresses
4 ; whose offset from the current instruction pointer is unknown.
5 ;CHECK-COUNT-3: endbr
7 @a = dso_local local_unnamed_addr global i32 1, align 4
9 ; Function Attrs: nofree noinline norecurse nounwind uwtable writeonly
10 define dso_local void @ext() local_unnamed_addr #0 {
11 entry:
12   store i32 0, ptr @a, align 4
13   ret void
16 ; Function Attrs: nofree norecurse nounwind uwtable
17 define dso_local i32 @main() local_unnamed_addr #1 {
18 entry:
19   tail call fastcc void @foo()
20   %0 = load i32, ptr @a, align 4
21   ret i32 %0
24 ; Function Attrs: nofree noinline norecurse nounwind uwtable writeonly
25 define internal fastcc void @foo() unnamed_addr #0 {
26 entry:
27   tail call void @ext()
28   ret void
31 !llvm.module.flags = !{!0, !1, !2, !3}
33 !0 = !{i32 1, !"wchar_size", i32 4}
34 !1 = !{i32 8, !"cf-protection-return", i32 1}
35 !2 = !{i32 8, !"cf-protection-branch", i32 1}
36 !3 = !{i32 1, !"Code Model", i32 4}