aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-11-28 14:56:52 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-11-28 14:56:52 +0000
commit71e7f9210d87fa29202d851c43b5e91bbbd2fa51 (patch)
tree68fa753b32cf07e957a4b20d76c124d5b6c033ef /include
parenta484f2c4051cf186ef1d68e26f017fe1e8da8b2a (diff)
downloadexternal_llvm-71e7f9210d87fa29202d851c43b5e91bbbd2fa51.zip
external_llvm-71e7f9210d87fa29202d851c43b5e91bbbd2fa51.tar.gz
external_llvm-71e7f9210d87fa29202d851c43b5e91bbbd2fa51.tar.bz2
Make EmitULEB128IntValue and EmitSLEB128IntValue non virtual.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120242 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCStreamer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index e6dd638..9cd615a 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/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.