commit | 774971030df946916b11fcdb1691511c3c1e27b7 | [log] [tgz] |
---|---|---|
author | Fangrui Song <maskray@google.com> | Fri Feb 14 22:40:47 2020 -0800 |
committer | Fangrui Song <maskray@google.com> | Fri Feb 14 23:08:40 2020 -0800 |
tree | 6cef99e3dd77d05f54ac921e0d37c68c0e89c447 | |
parent | 2101590a78b7189f89aa06513eeea2dee6a3c45a [diff] [blame] |
[MCStreamer] De-capitalize EmitValue EmitIntValue{,InHex}
diff --git a/llvm/lib/MC/MCELFStreamer.cpp b/llvm/lib/MC/MCELFStreamer.cpp index 131c1bb..b2a6978 100644 --- a/llvm/lib/MC/MCELFStreamer.cpp +++ b/llvm/lib/MC/MCELFStreamer.cpp
@@ -368,11 +368,11 @@ PushSection(); SwitchSection(Comment); if (!SeenIdent) { - EmitIntValue(0, 1); + emitIntValue(0, 1); SeenIdent = true; } emitBytes(IdentString); - EmitIntValue(0, 1); + emitIntValue(0, 1); PopSection(); }