svn commit: r236538 - stable/9/contrib/llvm/tools/bugpoint

Dimitry Andric dim at FreeBSD.org
Mon Jun 4 06:39:11 UTC 2012


Author: dim
Date: Mon Jun  4 06:39:10 2012
New Revision: 236538
URL: http://svn.freebsd.org/changeset/base/236538

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

Modified:
  stable/9/contrib/llvm/tools/bugpoint/ToolRunner.cpp
Directory Properties:
  stable/9/contrib/llvm/   (props changed)

Modified: stable/9/contrib/llvm/tools/bugpoint/ToolRunner.cpp
==============================================================================
--- stable/9/contrib/llvm/tools/bugpoint/ToolRunner.cpp	Mon Jun  4 06:06:10 2012	(r236537)
+++ stable/9/contrib/llvm/tools/bugpoint/ToolRunner.cpp	Mon Jun  4 06:39:10 2012	(r236538)
@@ -128,7 +128,7 @@ static int RunProgramRemotelyWithTimeout
       ErrorFile.close();
     }
 
-    errs() << OS;
+    errs() << OS.str();
   }
 
   return ReturnCode;


More information about the svn-src-stable-9 mailing list