Skip to content

Commit 5dc0531

Browse files
committed
Fix accessedOperands for Rocdl_RawPtrBufferLoadOp
1 parent 44feae8 commit 5dc0531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Dialect/LLVMIR/ROCDLOps.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ def ROCDL_RawPtrBufferLoadOp :
470470
let assemblyFormat = "operands attr-dict `:` type($res)";
471471
let extraClassDefinition = [{
472472
::llvm::SmallVector<::mlir::Value> $cppClass::getAccessedOperands() {
473-
return {getRes()};
473+
return {getRsrc()};
474474
}
475475
}];
476476
}

0 commit comments

Comments
 (0)