diff options
author | Chris Lattner <sabre@nondot.org> | 2011-10-16 05:43:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-10-16 05:43:57 +0000 |
commit | 3f2d5f60b31fd057c10f77b2e607b23a8c94f6d3 (patch) | |
tree | e7c36aeb6ce5e3a57764d841e5a0f603b9e12bef /lib/TableGen | |
parent | d8b7aa26134d2abee777f745c32005e63dea2455 (diff) | |
download | external_llvm-3f2d5f60b31fd057c10f77b2e607b23a8c94f6d3.zip external_llvm-3f2d5f60b31fd057c10f77b2e607b23a8c94f6d3.tar.gz external_llvm-3f2d5f60b31fd057c10f77b2e607b23a8c94f6d3.tar.bz2 |
Make SMDiagnostic a little more sane. Instead of passing around note/warning/error as a
string, pass it around as an enum.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142107 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/TableGen')
-rw-r--r-- | lib/TableGen/Error.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/TableGen/Error.cpp b/lib/TableGen/Error.cpp index 5b2cbbf..5071ee7 100644 --- a/lib/TableGen/Error.cpp +++ b/lib/TableGen/Error.cpp @@ -21,11 +21,11 @@ namespace llvm { SourceMgr SrcMgr; void PrintError(SMLoc ErrorLoc, const Twine &Msg) { - SrcMgr.PrintMessage(ErrorLoc, Msg, "error"); + SrcMgr.PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg); } void PrintError(const char *Loc, const Twine &Msg) { - SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), Msg, "error"); + SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Error, Msg); } void PrintError(const Twine &Msg) { |