Skip to content

Commit 38e6b58

Browse files
committed
[acc] accDataClauseOp -> accOp
1 parent d15c2f0 commit 38e6b58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/include/mlir/Dialect/OpenACC/OpenACC.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,17 +120,17 @@ mlir::SmallVector<mlir::Value> getBounds(mlir::Operation *accDataClauseOp);
120120
/// Used to obtain `async` operands from an acc operation.
121121
/// Returns an empty vector if there are no such operands.
122122
mlir::SmallVector<mlir::Value>
123-
getAsyncOperands(mlir::Operation *accDataClauseOp);
123+
getAsyncOperands(mlir::Operation *accOp);
124124

125125
/// Returns an array of acc:DeviceTypeAttr attributes attached to
126126
/// an acc operation, that correspond to the device types associated with the
127127
/// async clauses with an async-value.
128-
mlir::ArrayAttr getAsyncOperandsDeviceType(mlir::Operation *accDataClauseOp);
128+
mlir::ArrayAttr getAsyncOperandsDeviceType(mlir::Operation *accOp);
129129

130130
/// Returns an array of acc:DeviceTypeAttr attributes attached to
131131
/// an acc operation, that correspond to the device types associated with the
132132
/// async clauses without an async-value.
133-
mlir::ArrayAttr getAsyncOnly(mlir::Operation *accDataClauseOp);
133+
mlir::ArrayAttr getAsyncOnly(mlir::Operation *accOp);
134134

135135
/// Used to obtain the `name` from an acc operation.
136136
std::optional<llvm::StringRef> getVarName(mlir::Operation *accOp);

0 commit comments

Comments
 (0)