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:
George Burgess IV 2016-07-11 23:18:32 +00:00
parent e75aa6f674
commit 1cbd039234
1 changed files with 2 additions and 3 deletions

View File

@ -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});
}