mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-01 02:33:44 +00:00
Debug info: Remove an obsolete constructor from DebugLocEntry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215387 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
db72188598
commit
7189d07d62
@ -94,11 +94,11 @@ public:
|
||||
const MDNode *getVariable() const { return Variable; }
|
||||
};
|
||||
private:
|
||||
/// A list of locations/constants belonging to this entry, sorted by offset.
|
||||
/// A nonempty list of locations/constants belonging to this entry,
|
||||
/// sorted by offset.
|
||||
SmallVector<Value, 1> Values;
|
||||
|
||||
public:
|
||||
DebugLocEntry() : Begin(nullptr), End(nullptr) {}
|
||||
DebugLocEntry(const MCSymbol *B, const MCSymbol *E, Value Val)
|
||||
: Begin(B), End(E) {
|
||||
Values.push_back(std::move(Val));
|
||||
|
Loading…
x
Reference in New Issue
Block a user