13 lines · plain
1; RUN: llc < %s -mtriple=x86_64-pc-linux | FileCheck %s2; Test that we emit functions with explicitly specified personality,3; even if no landing pads are left.4 5declare i32 @__my_personality_v0(...)6declare void @might_throw()7 8define i32 @foo() personality ptr @__my_personality_v0 {9; CHECK: .cfi_personality 3, __my_personality_v010 call void @might_throw()11 ret i32 012}13