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.
|
; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 -relocation-model=pic < %s | FileCheck %s -check-prefix=pic
|
|
|
|
declare void @llvm.trap()
|
|
|
|
; Function Attrs: nounwind optsize readnone
|
|
define i32 @main() {
|
|
entry:
|
|
call void @llvm.trap()
|
|
unreachable
|
|
; pic: break 0
|
|
ret i32 0
|
|
}
|
|
|