detach the sidecar

This commit is contained in:
Alex Coyte
2015-11-26 12:44:56 +11:00
committed by Matthew Barr
parent e065c4d60b
commit a7d8dafb71
37 changed files with 37 additions and 3001 deletions

View File

@@ -210,22 +210,6 @@ bool RoseBuildImpl::hasNoFloatingRoots() const {
return true;
}
bool RoseBuildImpl::hasEodSideLink(void) const {
for (auto v : vertices_range(g)) {
if (!g[v].eod_accept) {
continue;
}
for (auto u : inv_adjacent_vertices_range(v, g)) {
if (g[u].escapes.any()) {
return true;
}
}
}
return false;
}
size_t RoseBuildImpl::maxLiteralLen(RoseVertex v) const {
const auto &lit_ids = g[v].literals;
assert(!lit_ids.empty());