mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-23 14:25:07 +00:00
Tighter data structure for deleted debug labels.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31152 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -30,8 +30,6 @@
|
||||
#ifndef LLVM_CODEGEN_MACHINEDEBUGINFO_H
|
||||
#define LLVM_CODEGEN_MACHINEDEBUGINFO_H
|
||||
|
||||
#include <set>
|
||||
|
||||
#include "llvm/Support/Dwarf.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/ADT/UniqueVector.h"
|
||||
@@ -981,9 +979,9 @@ private:
|
||||
//
|
||||
DebugScope *RootScope;
|
||||
|
||||
// DeletedLabelIDs - List of label IDs that have been removed from the
|
||||
// DeletedLabelIDs - Sorted list of label IDs that have been removed from the
|
||||
// module.
|
||||
std::set<unsigned> DeletedLabelIDs;
|
||||
std::vector<unsigned> DeletedLabelIDs;
|
||||
|
||||
// FrameMoves - List of moves done by a function's prolog. Used to construct
|
||||
// frame maps by debug consumers.
|
||||
|
Reference in New Issue
Block a user