Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / win64_eh_leaf.ll
blob8d7a301f546fc3b8f322214dd0a88b5d4bc348fe
1 ; RUN: llc < %s -O1 -mtriple=x86_64-pc-win32 | FileCheck %s -check-prefix=ASM
2 ; RUN: llc < %s -O1 -mtriple=x86_64-pc-win32 -filetype=obj -o %t
3 ; RUN: llvm-readobj --unwind %t | FileCheck %s -check-prefix=READOBJ
5 declare void @g(i32)
7 define i32 @not_leaf(i32) uwtable {
8 entry:
9   call void @g(i32 42)
10   ret i32 42
12 ; ASM-LABEL: not_leaf:
13 ; ASM: .seh
15 ; READOBJ: RuntimeFunction {
16 ; READOBJ-NEXT: StartAddress: not_leaf
17 ; READOBJ-NEXT: EndAddress: not_leaf
20 define void @leaf_func(i32) uwtable {
21 entry:
22   tail call void @g(i32 42)
23   ret void
25 ; A Win64 "leaf" function gets no .seh directives in the asm.
26 ; ASM-LABEL: leaf_func:
27 ; ASM-NOT: .seh
29 ; and no unwind info in the object file.
30 ; READOBJ-NOT: leaf_func
33 define void @naked_func() naked {
34   call void asm sideeffect "ret", ""()
35   unreachable
37 ; ASM-LABEL: naked_func:
38 ; ASM-NOT: .seh_
39 ; ASM: ret
40 ; ASM-NOT: .seh_