mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
Minimal changes for LLVM to compile under VS11.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151849 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -530,7 +530,7 @@ unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
|
||||
|
||||
std::map<std::pair<std::string, std::string>, unsigned>::iterator I;
|
||||
bool NewlyInserted;
|
||||
tie(I, NewlyInserted) = SourceIdMap.insert(Entry);
|
||||
llvm::tie(I, NewlyInserted) = SourceIdMap.insert(Entry);
|
||||
if (!NewlyInserted)
|
||||
return I->second;
|
||||
|
||||
|
Reference in New Issue
Block a user