aboutsummaryrefslogtreecommitdiff
path: root/lib/Tooling
diff options
context:
space:
mode:
authorEdwin Vane <edwin.vane@intel.com>2013-03-13 13:48:47 +0000
committerEdwin Vane <edwin.vane@intel.com>2013-03-13 13:48:47 +0000
commitc45df068ee49f4b40802820b22d3cc4ba43ea627 (patch)
tree86f41bc3fa8296abcd56f2e6f3f6fb81a1dc1eb2 /lib/Tooling
parenteea6a13b8eb8c446f1803720cc5d3ce79b643404 (diff)
Reverting r176944 until Author fixes test failure.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176945 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Tooling')
-rw-r--r--lib/Tooling/Tooling.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Tooling/Tooling.cpp b/lib/Tooling/Tooling.cpp
index 58047b3aae..a9e7b84808 100644
--- a/lib/Tooling/Tooling.cpp
+++ b/lib/Tooling/Tooling.cpp
@@ -25,7 +25,6 @@
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Host.h"
#include "llvm/Support/raw_ostream.h"
-#include "llvm/Support/Debug.h"
// For chdir, see the comment in ClangTool::run for more information.
#ifdef _WIN32
@@ -296,16 +295,14 @@ int ClangTool::run(FrontendActionFactory *ActionFactory) {
ArgsAdjuster->Adjust(CompileCommands[I].second.CommandLine);
assert(!CommandLine.empty());
CommandLine[0] = MainExecutable;
- DEBUG({
- llvm::dbgs() << "Processing: " << File << ".\n";
- });
+ llvm::outs() << "Processing: " << File << ".\n";
ToolInvocation Invocation(CommandLine, ActionFactory->create(), &Files);
for (int I = 0, E = MappedFileContents.size(); I != E; ++I) {
Invocation.mapVirtualFile(MappedFileContents[I].first,
MappedFileContents[I].second);
}
if (!Invocation.run()) {
- llvm::errs() << "Error while processing " << File << ".\n";
+ llvm::outs() << "Error while processing " << File << ".\n";
ProcessingFailed = true;
}
}