xref: /llvm-project/llvm/test/CodeGen/AArch64/macho-trap.ll (revision 271d3d277172f8db05953957310cbf5665d1bafb)
1; RUN: llc -mtriple=aarch64-apple-ios7.0 %s -o - | FileCheck %s
2
3define void @test_unreachable() {
4; CHECK-LABEL: test_unreachable:
5; CHECK: brk #0x1
6  unreachable
7}
8