diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2013-01-24 16:49:12 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2013-01-24 16:49:12 +0000 |
commit | 78d30972636423478f48480a3909b4582bec866a (patch) | |
tree | 84f8baee9c32798ebce32a2e32e5aaab03ead34e /tools | |
parent | d5a80c7358d01cde9e166bebc8a3ffa0eca3aa54 (diff) | |
download | external_llvm-78d30972636423478f48480a3909b4582bec866a.zip external_llvm-78d30972636423478f48480a3909b4582bec866a.tar.gz external_llvm-78d30972636423478f48480a3909b4582bec866a.tar.bz2 |
[bugpoint] set Message after tool configuration
Set the message returned after the GCC runner has been constructed as otherwise
the message will be overwritten by the construction of the runner, resulting in
misleading messages.
Signed-off-by: Saleem Abdulrasool <compnerd@compnerd.org>
Reviewed-by: Chandler Carruth <chandlerc@gmail.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173359 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/ToolRunner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp index e7d3978..735061d 100644 --- a/tools/bugpoint/ToolRunner.cpp +++ b/tools/bugpoint/ToolRunner.cpp @@ -531,12 +531,12 @@ LLC *AbstractInterpreter::createLLC(const char *Argv0, return 0; } - Message = "Found llc: " + LLCPath + "\n"; GCC *gcc = GCC::create(Message, GCCBinary, GCCArgs); if (!gcc) { errs() << Message << "\n"; exit(1); } + Message = "Found llc: " + LLCPath + "\n"; return new LLC(LLCPath, gcc, Args, UseIntegratedAssembler); } |