[Mlir-commits] [mlir] [mlir][spirv] Ignore extra comma for category_args in gen_spirv_dialect.py (PR #111776)
    Caio Oliveira 
    llvmlistbot at llvm.org
       
    Wed Oct 30 08:40:42 PDT 2024
    
    
  
================
@@ -988,6 +988,7 @@ def extract_td_op_info(op_def):
     op_tmpl_params, _ = get_string_between_nested(op_def, "<", ">")
     opstringname, rest = get_string_between(op_tmpl_params, '"', '"')
     category_args = rest.split("[", 1)[0]
+    category_args = category_args.rsplit(",", 1)[0]
----------------
cmarcelo wrote:
@kuhar ping
https://github.com/llvm/llvm-project/pull/111776
    
    
More information about the Mlir-commits
mailing list