diff options
Diffstat (limited to 'test/MC/Mips/set-at-directive-explicit-at.s')
-rw-r--r-- | test/MC/Mips/set-at-directive-explicit-at.s | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/MC/Mips/set-at-directive-explicit-at.s b/test/MC/Mips/set-at-directive-explicit-at.s index 797a2b7..28a7091 100644 --- a/test/MC/Mips/set-at-directive-explicit-at.s +++ b/test/MC/Mips/set-at-directive-explicit-at.s @@ -15,6 +15,16 @@ foo: # WARNINGS: :[[@LINE+2]]:11: warning: used $at without ".set noat" .set at=$1 jr $1 + +# CHECK: jr $1 # encoding: [0x08,0x00,0x20,0x00] +# WARNINGS: :[[@LINE+2]]:11: warning: used $at without ".set noat" + .set at=$at + jr $at + +# CHECK: jr $1 # encoding: [0x08,0x00,0x20,0x00] +# WARNINGS: :[[@LINE+2]]:11: warning: used $at without ".set noat" + .set at=$at + jr $1 # WARNINGS-NOT: warning: used $at without ".set noat" # CHECK: jr $1 # encoding: [0x08,0x00,0x20,0x00] |