[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / windows-trap.ll
blob5cf0ece48e97d1c8ec304470264f54495ed4bd04
1 ; RUN: llc -mtriple=aarch64-win32 %s -o - | FileCheck %s
3 declare void @callee() noreturn
5 ; Make sure the call isn't the last instruction in the function; if it is,
6 ; unwinding may break.
8 ; (The instruction after the call doesn't have to be anything in particular,
9 ; but trapping has the nice side-effect of catching bugs.)
11 define void @test_unreachable() {
12 ; CHECK-LABEL: test_unreachable:
13 ; CHECK: bl      callee
14 ; CHECK-NEXT: brk #0x1
15   call void @callee() noreturn
16   unreachable