xref: /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/Mips/check-noat.ll (revision b5e2faaaaf60a8b9a02f8d72f64caa56a87eb312)
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