summaryrefslogtreecommitdiff
path: root/mlir/test/python/python_test_ops.td
diff options
context:
space:
mode:
authorMarkus Böck <markus.boeck02@gmail.com>2023-02-07 16:38:28 +0100
committerMarkus Böck <markus.boeck02@gmail.com>2023-02-07 16:48:58 +0100
commitad48a0e573b25575bc800012d08bcd78780042de (patch)
tree0012791a4748e2a4cb4693636ece173a4b4c03bd /mlir/test/python/python_test_ops.td
parent604c9a07f3a9e93c4091bfc4e5c4d984be4ef686 (diff)
[mlir] Switch default Fold API to using FoldAdaptors
As mentioned in https://discourse.llvm.org/t/psa-new-improved-fold-method-signature-has-landed-please-update-your-downstream-projects/67618, it has now been about one month since the new fold API has been introduced. Any downstream users that have not yet switched, nor explicitly set useFoldAPI to kEmitRawAttributesFolder will experience a build break after this patch, requiring them to either switch to the new API or explicitly use the old one and live with the warning set by TableGen. Differential Revision: https://reviews.llvm.org/D143497
Diffstat (limited to 'mlir/test/python/python_test_ops.td')
-rw-r--r--mlir/test/python/python_test_ops.td1
1 files changed, 0 insertions, 1 deletions
diff --git a/mlir/test/python/python_test_ops.td b/mlir/test/python/python_test_ops.td
index 133568bbf1a0..0c63620251c0 100644
--- a/mlir/test/python/python_test_ops.td
+++ b/mlir/test/python/python_test_ops.td
@@ -20,7 +20,6 @@ def Python_Test_Dialect : Dialect {
let useDefaultTypePrinterParser = 1;
let useDefaultAttributePrinterParser = 1;
- let useFoldAPI = kEmitFoldAdaptorFolder;
}
class TestType<string name, string typeMnemonic>