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 dc4ffae commit 66c662fCopy full SHA for 66c662f
src/analyses/dependence_graph.cpp
@@ -176,7 +176,9 @@ void dep_graph_domaint::data_dependencies(
176
{
177
bool found=false;
178
for(const auto &wr : w_range.second)
179
+ {
180
for(const auto &r_range : r_ranges)
181
182
if(!found &&
183
may_be_def_use_pair(wr.first, wr.second,
184
r_range.first, r_range.second))
@@ -185,6 +187,8 @@ void dep_graph_domaint::data_dependencies(
185
187
data_deps.insert(w_range.first);
186
188
found=true;
189
}
190
+ }
191
192
193
194
dep_graph.reaching_definitions()[to].clear_cache(it->first);
0 commit comments