projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db72188
)
Debug info: Remove an obsolete constructor from DebugLocEntry.
author
Adrian Prantl
<aprantl@apple.com>
Mon, 11 Aug 2014 21:06:03 +0000
(21:06 +0000)
committer
Adrian Prantl
<aprantl@apple.com>
Mon, 11 Aug 2014 21:06:03 +0000
(21:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215387
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/AsmPrinter/DebugLocEntry.h
patch
|
blob
|
history
diff --git
a/lib/CodeGen/AsmPrinter/DebugLocEntry.h
b/lib/CodeGen/AsmPrinter/DebugLocEntry.h
index ba05aa711574ed64d1e0d79bd5554b53809804b8..e90c43e9dd699978024493e6581447153bc619a6 100644
(file)
--- a/
lib/CodeGen/AsmPrinter/DebugLocEntry.h
+++ b/
lib/CodeGen/AsmPrinter/DebugLocEntry.h
@@
-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));