diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-04-21 22:55:36 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-04-21 22:55:36 +0000 |
commit | 57f5fbe3b26ee04f44a84768acb2678996e3d57c (patch) | |
tree | 80ed1b125bfd57c7cfebb3bdd29fbb4ace5f327a /clang/lib/Tooling/Tooling.cpp | |
parent | e96dd8975ff6c01c6ab3b24002e61ff2d3f0f683 (diff) | |
download | bcm5719-llvm-57f5fbe3b26ee04f44a84768acb2678996e3d57c.tar.gz bcm5719-llvm-57f5fbe3b26ee04f44a84768acb2678996e3d57c.zip |
[Modules] Update Clang's two files that use DEBUG(...) without defining
DEBUG_TYPE to do so. LLVM's Debug.h requires this as of r206822.
llvm-svn: 206823
Diffstat (limited to 'clang/lib/Tooling/Tooling.cpp')
-rw-r--r-- | clang/lib/Tooling/Tooling.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Tooling/Tooling.cpp b/clang/lib/Tooling/Tooling.cpp index 7425e3b4e8f..25ade338e1a 100644 --- a/clang/lib/Tooling/Tooling.cpp +++ b/clang/lib/Tooling/Tooling.cpp @@ -38,6 +38,8 @@ # include <unistd.h> #endif +#define DEBUG_TYPE "clang-tooling" + namespace clang { namespace tooling { |