diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2016-06-11 08:12:17 +0000 | 
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2016-06-11 08:12:17 +0000 | 
| commit | 34033f10dea1bc1288f99de38634b971555ce5e9 (patch) | |
| tree | 2ae671affea15e85f5732ee82ac1b1444d2c9fc5 /llvm | |
| parent | 306e270b83a238eb66ed302b9530d1e48a41017a (diff) | |
| download | bcm5719-llvm-34033f10dea1bc1288f99de38634b971555ce5e9.tar.gz bcm5719-llvm-34033f10dea1bc1288f99de38634b971555ce5e9.zip  | |
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
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/MC/MCObjectStreamer.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/MC/MCObjectStreamer.h b/llvm/include/llvm/MC/MCObjectStreamer.h index 45a61aad889..d7775f27868 100644 --- a/llvm/include/llvm/MC/MCObjectStreamer.h +++ b/llvm/include/llvm/MC/MCObjectStreamer.h @@ -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;  | 

