Files
clang-p2996/llvm/test/CodeGen/Mips/check-noat.ll
2024-12-10 22:14:06 -08:00

12 lines
164 B
LLVM

; RUN: llc -mtriple=mipsel < %s | FileCheck %s
define void @f() nounwind readnone {
entry:
; CHECK-LABEL: f:
; CHECK: .set noat
; CHECK: .set at
ret void
}