mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
c29dfa786a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74478 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
339 B
ArmAsm
17 lines
339 B
ArmAsm
# RUN: llvm-mc %s > %t
|
|
|
|
# RUN: grep -A 2 TEST0 %t > %t2
|
|
# RUN: grep ".p2align 1, 0" %t2 | count 1
|
|
TEST0:
|
|
.align 1
|
|
|
|
# RUN: grep -A 2 TEST1 %t > %t2
|
|
# RUN: grep ".p2alignl 3, 0, 2" %t2 | count 1
|
|
TEST1:
|
|
.align32 3,,2
|
|
|
|
# RUN: grep -A 2 TEST2 %t > %t2
|
|
# RUN: grep ".balign 3, 10" %t2 | count 1
|
|
TEST2:
|
|
.balign 3,10
|