mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 15:13:49 -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
11 lines
352 B
LLVM
11 lines
352 B
LLVM
; RUN: llc -mtriple=armv7-apple-ios7.0 %s -o - | FileCheck %s
|
|
; RUN: llc -mtriple=thumbv7-apple-ios7.0 %s -o - | FileCheck %s
|
|
; RUN: llc -mtriple=thumbv7m-apple-macho %s -o - | FileCheck %s
|
|
; RUN: llc -mtriple=thumbv6m-apple-macho %s -o - | FileCheck %s
|
|
|
|
define void @test_unreachable() {
|
|
; CHECK-LABEL: test_unreachable:
|
|
; CHECK: trap
|
|
unreachable
|
|
}
|