diff options
author | Mehdi Amini <joker.eph@gmail.com> | 2023-05-01 15:55:58 -0700 |
---|---|---|
committer | Mehdi Amini <joker.eph@gmail.com> | 2023-05-01 15:55:58 -0700 |
commit | 1e853421a4b44e05ef9c63e24f183d6fe65e424e (patch) | |
tree | 54d48686ca194bcb85f0abc52014173262bf1628 /mlir/lib/Rewrite/ByteCode.cpp | |
parent | c3efd7ec575cac19fe204bc5560fad28d16e9a72 (diff) | |
download | llvm-1e853421a4b44e05ef9c63e24f183d6fe65e424e.zip llvm-1e853421a4b44e05ef9c63e24f183d6fe65e424e.tar.gz llvm-1e853421a4b44e05ef9c63e24f183d6fe65e424e.tar.bz2 |
Revert "Introduce MLIR Op Properties"
This reverts commit d572cd1b067f1177a981a4711bf2e501eaa8117b.
Some bots are broken and investigation is needed before relanding.
Diffstat (limited to 'mlir/lib/Rewrite/ByteCode.cpp')
-rw-r--r-- | mlir/lib/Rewrite/ByteCode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mlir/lib/Rewrite/ByteCode.cpp b/mlir/lib/Rewrite/ByteCode.cpp index eca0297..1ea4bef 100644 --- a/mlir/lib/Rewrite/ByteCode.cpp +++ b/mlir/lib/Rewrite/ByteCode.cpp @@ -1613,8 +1613,8 @@ void ByteCodeExecutor::executeCreateOperation(PatternRewriter &rewriter, // TODO: Handle failure. if (failed(inferInterface->inferReturnTypes( state.getContext(), state.location, state.operands, - state.attributes.getDictionary(state.getContext()), - state.getRawProperties(), state.regions, state.types))) + state.attributes.getDictionary(state.getContext()), state.regions, + state.types))) return; } else { // Otherwise, this is a fixed number of results. |