diff options
author | Petr Hosek <phosek@chromium.org> | 2016-06-01 01:59:58 +0000 |
---|---|---|
committer | Petr Hosek <phosek@chromium.org> | 2016-06-01 01:59:58 +0000 |
commit | faef3207defce1e3d08b6eac5713cf1e7beca934 (patch) | |
tree | 643bd70729e5d662ab4ee5207f83844a60fd3f88 /llvm/lib/MC/MCStreamer.cpp | |
parent | 382d81cacf066452b98128b680f0988e5bda89a8 (diff) | |
download | llvm-faef3207defce1e3d08b6eac5713cf1e7beca934.zip llvm-faef3207defce1e3d08b6eac5713cf1e7beca934.tar.gz llvm-faef3207defce1e3d08b6eac5713cf1e7beca934.tar.bz2 |
[MC] Rename EmitFill to emitFill
This is to match the overloaded variants as well as the new style.
Differential Revision: http://reviews.llvm.org/D20690
llvm-svn: 271359
Diffstat (limited to 'llvm/lib/MC/MCStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCStreamer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/MC/MCStreamer.cpp b/llvm/lib/MC/MCStreamer.cpp index 8872d32..c3dee8f 100644 --- a/llvm/lib/MC/MCStreamer.cpp +++ b/llvm/lib/MC/MCStreamer.cpp @@ -132,9 +132,9 @@ void MCStreamer::EmitGPRel32Value(const MCExpr *Value) { report_fatal_error("unsupported directive in streamer"); } -/// EmitFill - Emit NumBytes bytes worth of the value specified by -/// FillValue. This implements directives such as '.space'. -void MCStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) { +/// Emit NumBytes bytes worth of the value specified by FillValue. +/// This implements directives such as '.space'. +void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { for (uint64_t i = 0, e = NumBytes; i != e; ++i) EmitIntValue(FillValue, 1); } @@ -149,9 +149,9 @@ void MCStreamer::emitFill(uint64_t NumValues, int64_t Size, int64_t Expr) { } } -/// The implementation in this class just redirects to EmitFill. +/// The implementation in this class just redirects to emitFill. void MCStreamer::EmitZeros(uint64_t NumBytes) { - EmitFill(NumBytes, 0); + emitFill(NumBytes, 0); } unsigned MCStreamer::EmitDwarfFileDirective(unsigned FileNo, |