forked from OSchip/llvm-project
ARM: add at least one real test for r242123.
The ones committed were orthogonal to the change and would have passed before that revision. What it *did* do was prevent an assertion failure when generating object files. llvm-svn: 242166
This commit is contained in:
parent
0256486532
commit
feabe2e21e
|
@ -0,0 +1,10 @@
|
|||
; 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
|
||||
}
|
Loading…
Reference in New Issue