[all-commits] [llvm/llvm-project] 564bcf: Align adaptor's generator accessors for attribute ...
Mehdi Amini via All-commits
all-commits at lists.llvm.org
Tue Jan 4 21:42:33 PST 2022
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 564bcf9d0243ef4f3f5ed848f7195fd0489c77a5
https://github.com/llvm/llvm-project/commit/564bcf9d0243ef4f3f5ed848f7195fd0489c77a5
Author: Mehdi Amini <joker.eph at gmail.com>
Date: 2022-01-05 (Wed, 05 Jan 2022)
Changed paths:
M mlir/lib/Conversion/GPUCommon/GPUOpsLowering.cpp
M mlir/lib/Dialect/Linalg/Transforms/Bufferize.cpp
M mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
M mlir/test/mlir-tblgen/op-decl-and-defs.td
M mlir/tools/mlir-tblgen/OpDefinitionsGen.cpp
Log Message:
-----------
Align adaptor's generator accessors for attribute on the Op class
Each attribute has two accessor: one suffixed with `Attr` which returns the attribute itself
and one without the suffix which unwrap the attribute.
For example for a StringAttr attribute with a field named `kind`, we'll generate:
StringAttr getKindAttr();
StringRef getKind();
Differential Revision: https://reviews.llvm.org/D116466
More information about the All-commits
mailing list