diff options
Diffstat (limited to 'test/dot_s/lcomm-in-text-segment.s')
-rw-r--r-- | test/dot_s/lcomm-in-text-segment.s | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/dot_s/lcomm-in-text-segment.s b/test/dot_s/lcomm-in-text-segment.s new file mode 100644 index 000000000..b059e6309 --- /dev/null +++ b/test/dot_s/lcomm-in-text-segment.s @@ -0,0 +1,12 @@ + .text + .type a,@object + .lcomm a,4,2 + .type b,@object + .lcomm b,4,2 + .type c,@object + .data + .globl c + .align 2 +c: + .int32 b + .size c, 4 |