mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 21:29:41 +00:00
Silencing spurious MSVC C4189 warnings regarding local variables that are initialized but not used; NFC. This bug has been reported to Microsoft (https://connect.microsoft.com/VisualStudio/feedback/details/1475983).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240786 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ea767137b6
commit
9cd2a38706
@ -1427,10 +1427,10 @@ void DwarfLinker::endDebugObject() {
|
||||
ValidRelocs.clear();
|
||||
Ranges.clear();
|
||||
|
||||
for (auto *Block : DIEBlocks)
|
||||
Block->~DIEBlock();
|
||||
for (auto *Loc : DIELocs)
|
||||
Loc->~DIELoc();
|
||||
for (auto I = DIEBlocks.begin(), E = DIEBlocks.end(); I != E; ++I)
|
||||
(*I)->~DIEBlock();
|
||||
for (auto I = DIELocs.begin(), E = DIELocs.end(); I != E; ++I)
|
||||
(*I)->~DIELoc();
|
||||
|
||||
DIEBlocks.clear();
|
||||
DIELocs.clear();
|
||||
|
Loading…
x
Reference in New Issue
Block a user