summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-19 18:45:47 +0000
committerChris Lattner <sabre@nondot.org>2010-01-19 18:45:47 +0000
commitddf6bdde44287b5b559bc403a02ff971e15e8303 (patch)
treebc3558e6741c70092f9a71a601123180bfa0cba5 /include
parentf03ffd13f8f31fb8ead74b94eb2ef71b80ac7739 (diff)
downloadllvm-ddf6bdde44287b5b559bc403a02ff971e15e8303.tar.gz
llvm-ddf6bdde44287b5b559bc403a02ff971e15e8303.tar.bz2
llvm-ddf6bdde44287b5b559bc403a02ff971e15e8303.tar.xz
add a "MCStreamer::EmitFill" method, and move the default implementation
(which just iteratively emits bytes) to MCStreamer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93888 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCStreamer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index 5febed71b0..6e655a5905 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -168,6 +168,11 @@ namespace llvm {
/// match a native machine width.
virtual void EmitValue(const MCExpr *Value, unsigned Size) = 0;
+ /// EmitFill - Emit NumBytes bytes worth of the value specified by
+ /// FillValue. This implements directives such as '.space'.
+ virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue = 0);
+
+
/// EmitValueToAlignment - Emit some number of copies of @param Value until
/// the byte alignment @param ByteAlignment is reached.
///