Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / Generic / donothing.ll
blob7f9520b51d333f98ea31b2d2010bf80fa2151ed3
1 ; RUN: llc < %s | FileCheck %s
3 declare i32 @__gxx_personality_v0(...) addrspace(0)
4 declare void @__cxa_call_unexpected(ptr)
5 declare void @llvm.donothing() readnone
7 ; CHECK: f1
8 define void @f1() nounwind uwtable ssp personality ptr @__gxx_personality_v0 {
9 entry:
10 ; CHECK-NOT: donothing
11   invoke void @llvm.donothing()
12   to label %invoke.cont unwind label %lpad
14 invoke.cont:
15   ret void
17 lpad:
18   %0 = landingpad { ptr, i32 }
19           filter [0 x ptr] zeroinitializer
20   %1 = extractvalue { ptr, i32 } %0, 0
21   tail call void @__cxa_call_unexpected(ptr %1) noreturn nounwind
22   unreachable
25 ; CHECK: f2
26 define void @f2() nounwind {
27 entry:
28 ; CHECK-NOT: donothing
29   call void @llvm.donothing()
30   ret void