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
301 B
11 lines
301 B
4 months ago
|
; RUN: llc -mtriple=thumbv7-windows-itanium -filetype=obj -o - %s | llvm-objdump -d - | FileCheck %s
|
||
|
; RUN: llc -mtriple=thumbv7-windows-gnu -filetype=obj -o - %s | llvm-objdump -d - | FileCheck %s
|
||
|
|
||
|
define void @foo() {
|
||
|
; CHECK: file format coff-arm
|
||
|
|
||
|
; CHECK-LABEL: <foo>:
|
||
|
; CHECK: bx lr
|
||
|
ret void
|
||
|
}
|