forked from OSchip/llvm-project
Attempt to make buildbots happy.
Woohoo, unused variable warnings in builds without asserts (as a result of r275122). llvm-svn: 275126
This commit is contained in:
parent
e75aa6f674
commit
1cbd039234
|
@ -108,11 +108,10 @@ public:
|
|||
}
|
||||
|
||||
void addEdge(Node From, Node To, int64_t Offset = 0) {
|
||||
assert(getNode(To) != nullptr);
|
||||
|
||||
auto *FromInfo = getNode(From);
|
||||
assert(FromInfo != nullptr);
|
||||
auto *ToInfo = getNode(To);
|
||||
assert(ToInfo != nullptr);
|
||||
|
||||
FromInfo->Edges.push_back(Edge{To});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue