Date: Fri, 1 Jun 2012 06:50:38 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r236386 - head/contrib/llvm/tools/bugpoint Message-ID: <201206010650.q516ocOh093134@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206010650.q516ocOh093134>