mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 20:15:49 -04:00

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
11 lines
299 B
LLVM
11 lines
299 B
LLVM
; 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
|
|
}
|