From: Chris Lattner Date: Mon, 31 Aug 2009 03:22:35 +0000 (+0000) Subject: only print the override triple if it exists! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=306110845ade031f56bf50245357d6e18a929659;p=oota-llvm.git only print the override triple if it exists! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80534 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp index e527b2a1496..565f3f9a708 100644 --- a/tools/bugpoint/bugpoint.cpp +++ b/tools/bugpoint/bugpoint.cpp @@ -103,9 +103,10 @@ int main(int argc, char **argv) { LLVMContext& Context = getGlobalContext(); // If we have an override, set it and then track the triple we want Modules // to use. - if (!OverrideTriple.empty()) + if (!OverrideTriple.empty()) { TargetTriple.setTriple(OverrideTriple); - outs() << "override triple is " << OverrideTriple << '\n'; + outs() << "Override triple set to '" << OverrideTriple << "'\n"; + } BugDriver D(argv[0], AsChild, FindBugs, TimeoutValue, MemoryLimit, Context); if (D.addSources(InputFilenames)) return 1;