diff options
Diffstat (limited to 'test/MC/Mips/asciiz-directive.s')
-rw-r--r-- | test/MC/Mips/asciiz-directive.s | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/MC/Mips/asciiz-directive.s b/test/MC/Mips/asciiz-directive.s new file mode 100644 index 0000000000000..0e582145c7189 --- /dev/null +++ b/test/MC/Mips/asciiz-directive.s @@ -0,0 +1,28 @@ +# RUN: llvm-mc -triple mips-unknown-linux %s | FileCheck %s +# .asciiz is exactly the same as .asciz, except it's MIPS-specific. + +t1: + .asciiz +# CHECK-LABEL: t1 + +t2: + .asciiz "a" +# CHECK-LABEL: t2 +# CHECK: .byte 97 +# CHECK: .byte 0 + +t3: + .asciiz "a", "b", "c" +# CHECK-LABEL: t3 +# CHECK: .byte 97 +# CHECK: .byte 0 +# CHECK: .byte 98 +# CHECK: .byte 0 +# CHECK: .byte 99 +# CHECK: .byte 0 + +t4: + .asciiz "abcdefghijklmnop" +# CHECK-LABEL: t4 +# CHECK: .ascii "abcdefghijklmnop" +# CHECK: .byte 0 |