[llvm-commits] [llvm] r173360 -	/llvm/trunk/tools/bugpoint/ExecutionDriver.cpp
    Saleem Abdulrasool 
    compnerd at compnerd.org
       
    Thu Jan 24 08:49:14 PST 2013
    
    
  
Author: compnerd
Date: Thu Jan 24 10:49:14 2013
New Revision: 173360
URL: http://llvm.org/viewvc/llvm-project?rev=173360&view=rev
Log:
[bugpoint] make tool selection messages unique
Change messages to help identify which interpreter was actually selected (safe
vs testing).
Signed-off-by: Saleem Abdulrasool <compnerd at compnerd.org>
Reviewed-by: Chandler Carruth <chandlerc at gmail.com>
Modified:
    llvm/trunk/tools/bugpoint/ExecutionDriver.cpp
Modified: llvm/trunk/tools/bugpoint/ExecutionDriver.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/ExecutionDriver.cpp?rev=173360&r1=173359&r2=173360&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/ExecutionDriver.cpp (original)
+++ llvm/trunk/tools/bugpoint/ExecutionDriver.cpp Thu Jan 24 10:49:14 2013
@@ -230,7 +230,7 @@
     }
     if (!SafeInterpreter) {
       SafeInterpreterSel = AutoPick;
-      Message = "Sorry, I can't automatically select an interpreter!\n";
+      Message = "Sorry, I can't automatically select a safe interpreter!\n";
     }
     break;
   case RunLLC:
    
    
More information about the llvm-commits
mailing list