Skip to content

Commit

Permalink
Integrate LLVM at llvm/llvm-project@d1cad2290c10
Browse files Browse the repository at this point in the history
Updates LLVM usage to match
[d1cad2290c10](llvm/llvm-project@d1cad2290c10)

PiperOrigin-RevId: 673413227
  • Loading branch information
Enzyme Team authored and wsmoses committed Oct 1, 2024
1 parent 156570b commit 258cb7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enzyme/Enzyme/MLIR/Analysis/DataFlowActivityAnalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ void traverseCallGraph(FunctionOpInterface root,

curr.walk([&](CallOpInterface call) {
auto neighbor = dyn_cast_if_present<FunctionOpInterface>(
call.resolveCallable(symbolTable));
call.resolveCallableInTable(symbolTable));
if (neighbor && !visited.contains(neighbor)) {
frontier.push_back(neighbor);
visited.insert(neighbor);
Expand Down

0 comments on commit 258cb7d

Please sign in to comment.