summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MCObjectStreamer.cpp
diff options
context:
space:
mode:
authorPetr Hosek <phosek@chromium.org>2016-06-01 01:59:58 +0000
committerPetr Hosek <phosek@chromium.org>2016-06-01 01:59:58 +0000
commitfaef3207defce1e3d08b6eac5713cf1e7beca934 (patch)
tree643bd70729e5d662ab4ee5207f83844a60fd3f88 /llvm/lib/MC/MCObjectStreamer.cpp
parent382d81cacf066452b98128b680f0988e5bda89a8 (diff)
downloadbcm5719-llvm-faef3207defce1e3d08b6eac5713cf1e7beca934.tar.gz
bcm5719-llvm-faef3207defce1e3d08b6eac5713cf1e7beca934.zip
[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/MCObjectStreamer.cpp')
-rw-r--r--llvm/lib/MC/MCObjectStreamer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCObjectStreamer.cpp b/llvm/lib/MC/MCObjectStreamer.cpp
index bf7d0f241c0..05357984781 100644
--- a/llvm/lib/MC/MCObjectStreamer.cpp
+++ b/llvm/lib/MC/MCObjectStreamer.cpp
@@ -490,7 +490,7 @@ bool MCObjectStreamer::EmitRelocDirective(const MCExpr &Offset, StringRef Name,
return false;
}
-void MCObjectStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
+void MCObjectStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) {
const MCSection *Sec = getCurrentSection().first;
(void)Sec;
assert(Sec && "need a section");
@@ -513,7 +513,7 @@ void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue,
return;
}
- EmitFill(IntNumBytes, FillValue);
+ emitFill(IntNumBytes, FillValue);
}
void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size,
OpenPOWER on IntegriCloud