[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Verifier / invalid-cleanuppad-chain.ll
blob4523ce89da4f7b9e03f0f590e85983ca193fff09
1 ; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s
3 ; CHECK: CleanupReturnInst needs to be provided a CleanupPad
4 ; CHECK-NEXT: cleanupret from undef unwind label %bb2
5 ; CHECK-NEXT: token undef
6 ; CHECK: Parent pad must be catchpad/cleanuppad/catchswitch
7 ; CHECK-NEXT: cleanupret from undef unwind label %bb2
9 define void @test() personality i32 (...)* undef {
10   br label %bb1
12 bb1:
13   cleanupret from undef unwind label %bb2
15 bb2:
16   %pad = cleanuppad within none []
17   cleanupret from %pad unwind to caller