mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
7c3ff46d45
emits one directive instead of N. Not doing this would be a significant regression on the # bytes generated by .fill. llvm-svn: 93889
12 lines
186 B
ArmAsm
12 lines
186 B
ArmAsm
# RUN: llvm-mc -triple i386-apple-darwin %s | FileCheck %s
|
|
|
|
# CHECK: TEST0:
|
|
# CHECK: .space 1
|
|
TEST0:
|
|
.space 1
|
|
|
|
# CHECK: TEST1:
|
|
# CHECK: .space 2,3
|
|
TEST1:
|
|
.space 2, 3
|