Make EmitSymbolValue non virtual.
authorRafael Espindola <rafael.espindola@gmail.com>
Sun, 28 Nov 2010 15:12:55 +0000 (15:12 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Sun, 28 Nov 2010 15:12:55 +0000 (15:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120244 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCStreamer.h

index 7e3fe665402983b6dc0f6b87f655b30eb2084656..c7274d0d05666ae1f65662f7b63cad83c666ddde 100644 (file)
@@ -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.