1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/MC/AsmParser/directive_space.s
Chris Lattner 7c3ff46d45 add an MCAsmStreamer::EmitFill specialization of EmitFill that
emits one directive instead of N.  Not doing this would be a
significant regression on the # bytes generated by .fill.

llvm-svn: 93889
2010-01-19 18:52:28 +00:00

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