forked from OSchip/llvm-project
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:
parent
306e270b83
commit
34033f10de
llvm/include/llvm/MC
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue