xref: /llvm-project/llvm/test/CodeGen/X86/eh-frame-unreachable.ll (revision 502a77f125f43ffde57af34d3fd1b900248a91cd)
1; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
2; Test that we don't emit a row that extends beyond the FDE's range_size.
3;
4; CHECK: movq	%rsp, %rbp
5; CHECK: ud2
6; CHECK-NEXT:	.cfi_endproc
7; CHECK-NOT: .cfi
8
9define void @f() #0 {
10  unreachable
11}
12attributes #0 = { "frame-pointer"="all" }
13