svn commit: r236386 - head/contrib/llvm/tools/bugpoint

Dimitry Andric dim at FreeBSD.org
Fri Jun 1 06:50:38 UTC 2012


Author: dim
Date: Fri Jun  1 06:50:37 2012
New Revision: 236386
URL: http://svn.freebsd.org/changeset/base/236386

Log:
  Pull in r155978 from upstream llvm trunk:
  
    Fix unintentional use of operator bool.
  
  This enables llvm's bugpoint tool to build with libc++.
  
  MFC after:	3 days

Modified:
  head/contrib/llvm/tools/bugpoint/ToolRunner.cpp

Modified: head/contrib/llvm/tools/bugpoint/ToolRunner.cpp
==============================================================================
--- head/contrib/llvm/tools/bugpoint/ToolRunner.cpp	Fri Jun  1 06:45:14 2012	(r236385)
+++ head/contrib/llvm/tools/bugpoint/ToolRunner.cpp	Fri Jun  1 06:50:37 2012	(r236386)
@@ -128,7 +128,7 @@ static int RunProgramRemotelyWithTimeout
       ErrorFile.close();
     }
 
-    errs() << OS;
+    errs() << OS.str();
   }
 
   return ReturnCode;


More information about the svn-src-head mailing list