xref: /aosp_15_r20/external/llvm/test/CodeGen/Mips/check-noat.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc -march=mipsel < %s | FileCheck %s
2
3define void @f() nounwind readnone {
4entry:
5; CHECK-LABEL: f:
6; CHECK: .set  noat
7; CHECK: .set  at
8
9  ret void
10}
11
12