r282504 - Revert "Adapt to LLVM optimization remark interface change. NFC"
Adam Nemet via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 27 09:39:28 PDT 2016
Author: anemet
Date: Tue Sep 27 11:39:27 2016
New Revision: 282504
URL: http://llvm.org/viewvc/llvm-project?rev=282504&view=rev
Log:
Revert "Adapt to LLVM optimization remark interface change. NFC"
This reverts commit r282500.
Modified:
cfe/trunk/lib/CodeGen/CodeGenAction.cpp
Modified: cfe/trunk/lib/CodeGen/CodeGenAction.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenAction.cpp?rev=282504&r1=282503&r2=282504&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenAction.cpp (original)
+++ cfe/trunk/lib/CodeGen/CodeGenAction.cpp Tue Sep 27 11:39:27 2016
@@ -514,7 +514,7 @@ void BackendConsumer::EmitOptimizationMe
std::string Msg;
raw_string_ostream MsgStream(Msg);
- MsgStream << D.getMsg();
+ MsgStream << D.getMsg().str();
if (D.getHotness())
MsgStream << " (hotness: " << *D.getHotness() << ")";
More information about the cfe-commits
mailing list