mirror of
https://github.com/RPCS3/llvm.git
synced 2026-08-27 02:51:23 -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
165 B
LLVM
8 lines
165 B
LLVM
; RUN: llc -mtriple=x86_64-apple-macosx10.11 %s -o - | FileCheck %s
|
|
|
|
define void @test_unreachable() {
|
|
; CHECK-LABEL: test_unreachable:
|
|
; CHECK: ud2
|
|
unreachable
|
|
}
|