diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-06-21 22:55:50 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-06-21 22:55:50 +0000 |
commit | 0b6a44afb92fed0365b6709c1f46b0c5e49e1a72 (patch) | |
tree | 2b3578c678b2c74d3d10599641bae25731f3139a /utils/TableGen/TGLexer.cpp | |
parent | 109c22c06232358597afec5d8b7a6b6fd24e19b1 (diff) | |
download | external_llvm-0b6a44afb92fed0365b6709c1f46b0c5e49e1a72.tar.gz external_llvm-0b6a44afb92fed0365b6709c1f46b0c5e49e1a72.tar.bz2 external_llvm-0b6a44afb92fed0365b6709c1f46b0c5e49e1a72.zip |
Consolidate some TableGen diagnostic helper functions.
TableGen had diagnostic printers sprinkled about in a few places. Pull them
together into a single location in Error.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/TGLexer.cpp')
-rw-r--r-- | utils/TableGen/TGLexer.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/utils/TableGen/TGLexer.cpp b/utils/TableGen/TGLexer.cpp index 572c36dcca..b4b90ff64e 100644 --- a/utils/TableGen/TGLexer.cpp +++ b/utils/TableGen/TGLexer.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "TGLexer.h" +#include "Error.h" #include "llvm/Support/SourceMgr.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Config/config.h" @@ -35,7 +36,6 @@ SMLoc TGLexer::getLoc() const { return SMLoc::getFromPointer(TokStart); } - /// ReturnError - Set the error to the specified string at the specified /// location. This is defined to always return tgtok::Error. tgtok::TokKind TGLexer::ReturnError(const char *Loc, const Twine &Msg) { @@ -43,16 +43,6 @@ tgtok::TokKind TGLexer::ReturnError(const char *Loc, const Twine &Msg) { return tgtok::Error; } - -void TGLexer::PrintError(const char *Loc, const Twine &Msg) const { - SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), Msg, "error"); -} - -void TGLexer::PrintError(SMLoc Loc, const Twine &Msg) const { - SrcMgr.PrintMessage(Loc, Msg, "error"); -} - - int TGLexer::getNextChar() { char CurChar = *CurPtr++; switch (CurChar) { |