diff options
Diffstat (limited to 'llvm/lib/Object/RecordStreamer.cpp')
-rw-r--r-- | llvm/lib/Object/RecordStreamer.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/llvm/lib/Object/RecordStreamer.cpp b/llvm/lib/Object/RecordStreamer.cpp index f39a6c28ed50..b2f973eff361 100644 --- a/llvm/lib/Object/RecordStreamer.cpp +++ b/llvm/lib/Object/RecordStreamer.cpp @@ -81,22 +81,22 @@ RecordStreamer::const_iterator RecordStreamer::begin() { RecordStreamer::const_iterator RecordStreamer::end() { return Symbols.end(); } -void RecordStreamer::EmitInstruction(const MCInst &Inst, +void RecordStreamer::emitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) { - MCStreamer::EmitInstruction(Inst, STI); + MCStreamer::emitInstruction(Inst, STI); } -void RecordStreamer::EmitLabel(MCSymbol *Symbol, SMLoc Loc) { - MCStreamer::EmitLabel(Symbol); +void RecordStreamer::emitLabel(MCSymbol *Symbol, SMLoc Loc) { + MCStreamer::emitLabel(Symbol); markDefined(*Symbol); } -void RecordStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) { +void RecordStreamer::emitAssignment(MCSymbol *Symbol, const MCExpr *Value) { markDefined(*Symbol); - MCStreamer::EmitAssignment(Symbol, Value); + MCStreamer::emitAssignment(Symbol, Value); } -bool RecordStreamer::EmitSymbolAttribute(MCSymbol *Symbol, +bool RecordStreamer::emitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) { if (Attribute == MCSA_Global || Attribute == MCSA_Weak) markGlobal(*Symbol, Attribute); @@ -105,13 +105,13 @@ bool RecordStreamer::EmitSymbolAttribute(MCSymbol *Symbol, return true; } -void RecordStreamer::EmitZerofill(MCSection *Section, MCSymbol *Symbol, +void RecordStreamer::emitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment, SMLoc Loc) { markDefined(*Symbol); } -void RecordStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, +void RecordStreamer::emitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) { markDefined(*Symbol); } @@ -224,9 +224,9 @@ void RecordStreamer::flushSymverDirectives() { if (IsDefined) markDefined(*Alias); // Don't use EmitAssignment override as it always marks alias as defined. - MCStreamer::EmitAssignment(Alias, Value); + MCStreamer::emitAssignment(Alias, Value); if (Attr != MCSA_Invalid) - EmitSymbolAttribute(Alias, Attr); + emitSymbolAttribute(Alias, Attr); } } } |