diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-28 14:56:52 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-28 14:56:52 +0000 |
| commit | fd374cbcf792fe0b96d17236560b9cde8b879262 (patch) | |
| tree | 298c19a12286f057a5476411810c65820cc07891 /llvm | |
| parent | 164c797676319f76b952b98073c5c3fcd5727d6c (diff) | |
| download | bcm5719-llvm-fd374cbcf792fe0b96d17236560b9cde8b879262.tar.gz bcm5719-llvm-fd374cbcf792fe0b96d17236560b9cde8b879262.zip | |
Make EmitULEB128IntValue and EmitSLEB128IntValue non virtual.
llvm-svn: 120242
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/MC/MCStreamer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/MC/MCStreamer.h b/llvm/include/llvm/MC/MCStreamer.h index e6dd6386ec6..9cd615adeb8 100644 --- a/llvm/include/llvm/MC/MCStreamer.h +++ b/llvm/include/llvm/MC/MCStreamer.h @@ -258,11 +258,11 @@ namespace llvm { /// 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. |

