forked from OSchip/llvm-project
Make the compile unit map a MapVector so that we can assume a stable
output ordering. llvm-svn: 200421
This commit is contained in:
parent
95531b6969
commit
179fba19fa
|
@ -2880,8 +2880,9 @@ void DwarfDebug::emitDebugRanges() {
|
|||
unsigned char Size = Asm->getDataLayout().getPointerSize();
|
||||
|
||||
// Grab the specific ranges for the compile units in the module.
|
||||
for (DenseMap<const MDNode *, DwarfCompileUnit *>::iterator I = CUMap.begin(),
|
||||
E = CUMap.end();
|
||||
for (MapVector<const MDNode *, DwarfCompileUnit *>::iterator
|
||||
I = CUMap.begin(),
|
||||
E = CUMap.end();
|
||||
I != E; ++I) {
|
||||
DwarfCompileUnit *TheCU = I->second;
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include "llvm/ADT/SetVector.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/ADT/MapVector.h"
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/CodeGen/LexicalScopes.h"
|
||||
#include "llvm/DebugInfo.h"
|
||||
|
@ -334,7 +335,7 @@ class DwarfDebug : public AsmPrinterHandler {
|
|||
DwarfCompileUnit *FirstCU;
|
||||
|
||||
// Maps MDNode with its corresponding DwarfCompileUnit.
|
||||
DenseMap<const MDNode *, DwarfCompileUnit *> CUMap;
|
||||
MapVector<const MDNode *, DwarfCompileUnit *> CUMap;
|
||||
|
||||
// Maps subprogram MDNode with its corresponding DwarfCompileUnit.
|
||||
DenseMap<const MDNode *, DwarfCompileUnit *> SPMap;
|
||||
|
|
Loading…
Reference in New Issue