8e12397d70
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
12 lines
177 B
LLVM
12 lines
177 B
LLVM
; RUN: llc -march=mipsel -mcpu=mips32 < %s | FileCheck %s
|
|
|
|
declare void @llvm.trap()
|
|
|
|
define void @f1() {
|
|
entry:
|
|
call void @llvm.trap()
|
|
unreachable
|
|
|
|
; CHECK: break
|
|
}
|