You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
352 B
11 lines
352 B
; 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
|
|
}
|