projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[WinEH] Avoid infinite loop in BranchFolding for multiple single block funclets
[oota-llvm.git]
/
test
/
MC
/
Mips
/
asciiz-directive.s
1
# RUN: llvm-mc -triple mips-unknown-linux %s | FileCheck %s
2
# .asciiz is exactly the same as .asciz, except it's MIPS-specific.
3
4
t1:
5
.asciiz
6
# CHECK-LABEL: t1
7
8
t2:
9
.asciiz "a"
10
# CHECK-LABEL: t2
11
# CHECK: .byte 97
12
# CHECK: .byte 0
13
14
t3:
15
.asciiz "a", "b", "c"
16
# CHECK-LABEL: t3
17
# CHECK: .byte 97
18
# CHECK: .byte 0
19
# CHECK: .byte 98
20
# CHECK: .byte 0
21
# CHECK: .byte 99
22
# CHECK: .byte 0
23
24
t4:
25
.asciiz "abcdefghijklmnop"
26
# CHECK-LABEL: t4
27
# CHECK: .ascii "abcdefghijklmnop"
28
# CHECK: .byte 0