mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
11 lines
187 B
ArmAsm
11 lines
187 B
ArmAsm
|
# RUN: llvm-mc %s | FileCheck %s
|
||
|
|
||
|
# CHECK: TEST0:
|
||
|
# CHECK: .lcomm a,7,4
|
||
|
# CHECK: .lcomm b,8
|
||
|
# CHECK: .lcomm c,0
|
||
|
TEST0:
|
||
|
.lcomm a, 8-1, 4
|
||
|
.lcomm b,8
|
||
|
.lcomm c, 0
|