mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
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
|
||
|
}
|
||
|
|