[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / exception-label.ll
blobaa3f7753ac66e5fe05b61f7db6c679574f7f3243
1 ; RUN: llc < %s -mtriple=x86_64-pc-linux | FileCheck %s
3 ; Test that we can handle .Lexception0 being defined. We used to crash.
5 ; CHECK: .cfi_lsda 3, [[LABEL:.*]]
6 ; CHECK: [[LABEL]]:
7 ; CHECK-NEXT: .byte   255                     # @LPStart Encoding = omit
9 declare void @g()
11 define void @f() personality ptr @g {
12 bb0:
13   call void asm ".Lexception0:", ""()
14   invoke void @g()
15           to label %bb2 unwind label %bb1
16 bb1:
17   landingpad { ptr, i32 }
18           catch ptr null
19   br label %bb2
21 bb2:
22   ret void