llvm-6502/test/CodeGen/Mips/check-noat.ll
Akira Hatanaka 173192fa71 [mips] Delete MipsFunctionInfo::EmitNOAT. Unconditionally print directive
"set .noat" so that the assembler doesn't issue warnings when register $AT is
used.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167310 91177308-0d34-0410-b5e6-96231b3b80d8
2012-11-02 20:56:25 +00:00

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
}