We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fae6a48 commit 3e51f30Copy full SHA for 3e51f30
src/analyses/dependence_graph.cpp
@@ -175,7 +175,9 @@ void dep_graph_domaint::data_dependencies(
175
{
176
bool found=false;
177
for(const auto &wr : w_range.second)
178
+ {
179
for(const auto &r_range : r_ranges)
180
181
if(!found &&
182
may_be_def_use_pair(wr.first, wr.second,
183
r_range.first, r_range.second))
@@ -184,6 +186,8 @@ void dep_graph_domaint::data_dependencies(
184
186
data_deps.insert(w_range.first);
185
187
found=true;
188
}
189
+ }
190
191
192
193
dep_graph.reaching_definitions()[to].clear_cache(it->first);
0 commit comments