mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
ba57d98a50
"set .noat" so that the assembler doesn't issue warnings when register $AT is used. llvm-svn: 167310
12 lines
156 B
LLVM
12 lines
156 B
LLVM
; RUN: llc -march=mipsel < %s | FileCheck %s
|
|
|
|
define void @f() nounwind readnone {
|
|
entry:
|
|
; CHECK: f:
|
|
; CHECK: .set noat
|
|
; CHECK: .set at
|
|
|
|
ret void
|
|
}
|
|
|