summaryrefslogtreecommitdiff
path: root/src/passes/Souperify.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/passes/Souperify.cpp')
-rw-r--r--src/passes/Souperify.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/passes/Souperify.cpp b/src/passes/Souperify.cpp
index 913a58e81..826c3f350 100644
--- a/src/passes/Souperify.cpp
+++ b/src/passes/Souperify.cpp
@@ -90,7 +90,7 @@ struct UseFinder {
return;
}
// Find all the uses of that set.
- auto& gets = localGraph.setInfluences[set];
+ auto& gets = localGraph.getSetInfluences(set);
if (debug() >= 2) {
std::cout << "addSetUses for " << set << ", " << gets.size() << " gets\n";
}
@@ -98,7 +98,7 @@ struct UseFinder {
// Each of these relevant gets is either
// (1) a child of a set, which we can track, or
// (2) not a child of a set, e.g., a call argument or such
- auto& sets = localGraph.getInfluences[get]; // TODO: iterator
+ auto& sets = localGraph.getGetInfluences(get); // TODO: iterator
// In flat IR, each get can influence at most 1 set.
assert(sets.size() <= 1);
if (sets.size() == 0) {