forked from OSchip/llvm-project
MC: Give target specific parsers access to the MCStreamer.
llvm-svn: 81416
This commit is contained in:
parent
59e4c84c6f
commit
a944234a1e
|
@ -16,6 +16,7 @@ namespace llvm {
|
|||
class MCAsmLexer;
|
||||
class MCContext;
|
||||
class MCExpr;
|
||||
class MCStreamer;
|
||||
class MCValue;
|
||||
class SMLoc;
|
||||
class Twine;
|
||||
|
@ -35,6 +36,9 @@ public:
|
|||
|
||||
virtual MCContext &getContext() = 0;
|
||||
|
||||
/// getSteamer - Return the output streamer for the assembler.
|
||||
virtual MCStreamer &getStreamer() = 0;
|
||||
|
||||
/// Warning - Emit a warning at the location \arg L, with the message \arg
|
||||
/// Msg.
|
||||
virtual void Warning(SMLoc L, const Twine &Msg) = 0;
|
||||
|
|
|
@ -67,6 +67,8 @@ public:
|
|||
|
||||
virtual MCContext &getContext() { return Ctx; }
|
||||
|
||||
virtual MCStreamer &getStreamer() { return Out; }
|
||||
|
||||
virtual void Warning(SMLoc L, const Twine &Meg);
|
||||
|
||||
virtual bool Error(SMLoc L, const Twine &Msg);
|
||||
|
|
Loading…
Reference in New Issue