[llvm-commits] [llvm] r120242 - /llvm/trunk/include/llvm/MC/MCStreamer.h
Rafael Espindola
rafael.espindola at gmail.com
Sun Nov 28 06:56:52 PST 2010
Author: rafael
Date: Sun Nov 28 08:56:52 2010
New Revision: 120242
URL: http://llvm.org/viewvc/llvm-project?rev=120242&view=rev
Log:
Make EmitULEB128IntValue and EmitSLEB128IntValue non virtual.
Modified:
llvm/trunk/include/llvm/MC/MCStreamer.h
Modified: llvm/trunk/include/llvm/MC/MCStreamer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCStreamer.h?rev=120242&r1=120241&r2=120242&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCStreamer.h (original)
+++ llvm/trunk/include/llvm/MC/MCStreamer.h Sun Nov 28 08:56:52 2010
@@ -258,11 +258,11 @@
/// EmitULEB128Value - Special case of EmitULEB128Value that avoids the
/// client having to pass in a MCExpr for constant integers.
- virtual void EmitULEB128IntValue(uint64_t Value, unsigned AddrSpace = 0);
+ void EmitULEB128IntValue(uint64_t Value, unsigned AddrSpace = 0);
/// EmitSLEB128Value - Special case of EmitSLEB128Value that avoids the
/// client having to pass in a MCExpr for constant integers.
- virtual void EmitSLEB128IntValue(int64_t Value, unsigned AddrSpace = 0);
+ void EmitSLEB128IntValue(int64_t Value, unsigned AddrSpace = 0);
/// EmitSymbolValue - Special case of EmitValue that avoids the client
/// having to pass in a MCExpr for MCSymbols.
More information about the llvm-commits
mailing list