From a5791365dfbc0f4327c68b14b60bd85852fd0c24 Mon Sep 17 00:00:00 2001 From: Lukas Korencik Date: Wed, 24 Apr 2024 15:11:10 +0200 Subject: [PATCH] hl: Do not use properties for attributes by default. This is turned off to allow easier port to llvm-18, separate issue will track the progress to turn this feature on. --- include/vast/Dialect/HighLevel/HighLevel.td | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/vast/Dialect/HighLevel/HighLevel.td b/include/vast/Dialect/HighLevel/HighLevel.td index f40b22e884..f8caa76dbf 100644 --- a/include/vast/Dialect/HighLevel/HighLevel.td +++ b/include/vast/Dialect/HighLevel/HighLevel.td @@ -37,6 +37,8 @@ def HighLevel_Dialect : Dialect { let hasConstantMaterializer = 1; let dependentDialects = ["vast::core::CoreDialect"]; + + let usePropertiesForAttributes = 0; } class HighLevel_Op< string mnemonic, list< Trait > traits = [] >