Skip to content

Commit c99c214

Browse files
chsiggantiagainst
andauthored
[BACKEND] Update LLVM version to llvm/llvm-project@36adf8e (triton-lang#4725)
llvm/llvm-project@36adf8e Co-authored-by: Lei Zhang <[email protected]>
1 parent 1f5dc71 commit c99c214

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmake/llvm-hash.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7ba6768df8181bc270763333969d4a1d6cc2e160
1+
36adf8ecedb64047021265a1e1730773d3b3a9e8

include/triton/Analysis/AxisInfo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ class ModuleAxisInfoAnalysis : public CallGraph<AxisInfoMapT> {
180180
for (auto funcOp : llvm::reverse(sortedFuncs)) {
181181
initialize(funcOp);
182182
funcOp.walk([&](CallOpInterface callOp) {
183-
auto callee =
184-
dyn_cast<FunctionOpInterface>(callOp.resolveCallable(&symbolTable));
183+
auto callee = dyn_cast<FunctionOpInterface>(
184+
callOp.resolveCallableInTable(&symbolTable));
185185
update(callOp, callee);
186186
});
187187
}

include/triton/Analysis/Utility.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ template <typename T> class CallGraph {
316316
moduleOp.walk([&](Operation *op) {
317317
auto caller = op->getParentOfType<FunctionOpInterface>();
318318
if (auto callOp = dyn_cast<CallOpInterface>(op)) {
319-
auto *callee = callOp.resolveCallable(&symbolTable);
319+
auto *callee = callOp.resolveCallableInTable(&symbolTable);
320320
auto funcOp = dyn_cast_or_null<FunctionOpInterface>(callee);
321321
if (funcOp) {
322322
graph[caller].emplace_back(

0 commit comments

Comments
 (0)