mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
173192fa71
"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
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
|
|
}
|
|
|