Add a using declaration so that the overrides don't hide some of the

base class methods.

This was caught by GCC's -Woverloaded-virtual, not sure why it wasn't
caught by Clang's. =/

llvm-svn: 272460
This commit is contained in:
Chandler Carruth 2016-06-11 08:12:17 +00:00
parent 306e270b83
commit 34033f10de
1 changed files with 1 additions and 0 deletions
llvm/include/llvm/MC

View File

@ -140,6 +140,7 @@ public:
void EmitGPRel64Value(const MCExpr *Value) override;
bool EmitRelocDirective(const MCExpr &Offset, StringRef Name,
const MCExpr *Expr, SMLoc Loc) override;
using MCStreamer::emitFill;
void emitFill(uint64_t NumBytes, uint8_t FillValue) override;
void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
SMLoc Loc = SMLoc()) override;