mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Fix Twine corruption problem with diagnostics.
This fixes the autobuilders I broke with a recent patch. Thanks echristo and dblaikie for beating me with a clue stick. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220918 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e75c2b3e54
commit
496bd0b8a5
@ -740,8 +740,7 @@ bool SampleProfileLoader::doInitialization(Module &M) {
|
||||
if (std::error_code EC =
|
||||
SampleProfileReader::create(Filename, Reader, M.getContext())) {
|
||||
std::string Msg = "Could not open profile: " + EC.message();
|
||||
DiagnosticInfoSampleProfile Diag(Filename.data(), Msg);
|
||||
M.getContext().diagnose(Diag);
|
||||
M.getContext().diagnose(DiagnosticInfoSampleProfile(Filename.data(), Msg));
|
||||
return false;
|
||||
}
|
||||
ProfileIsValid = (Reader->read() == sampleprof_error::success);
|
||||
|
Loading…
x
Reference in New Issue
Block a user