mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-18 10:08:34 +00:00
12 lines
216 B
ArmAsm
12 lines
216 B
ArmAsm
|
# RUN: llvm-mc %s > %t
|
||
|
|
||
|
# RUN: grep -A 2 TEST0 %t > %t2
|
||
|
# RUN: grep ".org 1, 0" %t2 | count 1
|
||
|
TEST0:
|
||
|
.org 1
|
||
|
|
||
|
# RUN: grep -A 2 TEST1 %t > %t2
|
||
|
# RUN: grep ".org 1, 3" %t2 | count 1
|
||
|
TEST1:
|
||
|
.org 1, 3
|