brintos

brintos / llvm-project-archived public Read only

0
0
Text · 699 B · 0435754 Raw
26 lines · plain
1; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s2 3; PR183904; We used to assert creating this label. The name itself is not critical. It5; just needs to be a unique local symbol.6; PR368857; The stub symbol should have pointer-size (8 byte) alignment.8; CHECK:      .data9; CHECK-NEXT: .p2align 310; CHECK-NEXT: .L.Lstr.DW.stub:11; CHECK-NEXT: .quad   .Lstr12 13@str = private unnamed_addr constant [12 x i8] c"NSException\00"14define void @f() personality ptr @h {15  invoke void @g()16          to label %invoke.cont unwind label %lpad17invoke.cont:18  ret void19lpad:20  %tmp14 = landingpad { ptr, i32 }21           catch ptr @str22  ret void23}24declare void @g()25declare void @h()26