mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
a0d1426af0
- Includes some DG tests in test/MC/AsmParser, which are rather primitive since we don't have a -verify mode yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74139 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
401 B
ArmAsm
22 lines
401 B
ArmAsm
# RUN: llvm-mc %s > %t
|
|
|
|
# RUN: grep -A 2 TEST0 %t > %t2
|
|
# RUN: grep ".byte 0" %t2 | count 1
|
|
TEST0:
|
|
.byte 0
|
|
|
|
# RUN: grep -A 2 TEST1 %t > %t2
|
|
# RUN: grep ".short 3" %t2 | count 1
|
|
TEST1:
|
|
.short 3
|
|
|
|
# RUN: grep -A 2 TEST2 %t > %t2
|
|
# RUN: grep ".long 8" %t2 | count 1
|
|
TEST2:
|
|
.long 8
|
|
|
|
# RUN: grep -A 2 TEST3 %t > %t2
|
|
# RUN: grep ".quad 9" %t2 | count 1
|
|
TEST3:
|
|
.quad 9
|