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; _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"