From: Rafael Espindola Date: Sun, 28 Nov 2010 15:12:55 +0000 (+0000) Subject: Make EmitSymbolValue non virtual. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=175ccab75f3a355285cf4533c201cbcecfd5928d;p=oota-llvm.git Make EmitSymbolValue non virtual. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120244 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h index 7e3fe665402..c7274d0d056 100644 --- a/include/llvm/MC/MCStreamer.h +++ b/include/llvm/MC/MCStreamer.h @@ -266,8 +266,8 @@ namespace llvm { /// EmitSymbolValue - Special case of EmitValue that avoids the client /// having to pass in a MCExpr for MCSymbols. - virtual void EmitSymbolValue(const MCSymbol *Sym, unsigned Size, - unsigned AddrSpace = 0); + void EmitSymbolValue(const MCSymbol *Sym, unsigned Size, + unsigned AddrSpace = 0); /// EmitGPRel32Value - Emit the expression @p Value into the output as a /// gprel32 (32-bit GP relative) value.