aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-11-28 23:22:44 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-11-28 23:22:44 +0000
commitec0b428398c5fb91fdce5d3d003ab0e4b75b5d6a (patch)
tree2793c663c262a1b2b6eb0e719a4d9e880414ecff /include
parentf7c3b75bc52e66f80842687f445dec51a7a23c64 (diff)
downloadexternal_llvm-ec0b428398c5fb91fdce5d3d003ab0e4b75b5d6a.zip
external_llvm-ec0b428398c5fb91fdce5d3d003ab0e4b75b5d6a.tar.gz
external_llvm-ec0b428398c5fb91fdce5d3d003ab0e4b75b5d6a.tar.bz2
Make EmitIntValue non virtual.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120271 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCStreamer.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index c7274d0..3c536b1 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -246,8 +246,7 @@ namespace llvm {
/// EmitIntValue - Special case of EmitValue that avoids the client having
/// to pass in a MCExpr for constant integers.
- virtual void EmitIntValue(uint64_t Value, unsigned Size,
- unsigned AddrSpace = 0);
+ void EmitIntValue(uint64_t Value, unsigned Size, unsigned AddrSpace = 0);
virtual void EmitULEB128Value(const MCExpr *Value,