mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-07 11:38:04 +00:00
ab39f1740c
Debugability is more important than saving 4 bytes to let us to fall through to nonense. llvm-svn: 330073
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
|
|
}
|