mirror of
https://github.com/RPCS3/llvm.git
synced 2026-08-26 18:26:51 -04:00
3352f5142d
Debugability is more important than saving 4 bytes to let us to fall through to nonense. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@330073 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
166 B
LLVM
8 lines
166 B
LLVM
; RUN: llc -mtriple=aarch64-apple-ios7.0 %s -o - | FileCheck %s
|
|
|
|
define void @test_unreachable() {
|
|
; CHECK-LABEL: test_unreachable:
|
|
; CHECK: brk #0x1
|
|
unreachable
|
|
}
|