mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
6dc5fe883a
Fixes a crash in llc where some parts think the target is thumb and others think it is ARM. llvm-svn: 197607
8 lines
98 B
LLVM
8 lines
98 B
LLVM
; RUN: llc < %s -mtriple=thumb | FileCheck %s
|
|
|
|
; CHECK: .code 16
|
|
|
|
define void @f() {
|
|
ret void
|
|
}
|