Merge branch 'master' into asm_immediate_constant

This commit is contained in:
gingerBill
2026-08-25 15:28:06 +01:00
committed by GitHub
52 changed files with 5374 additions and 3490 deletions

View File

@@ -13906,6 +13906,10 @@ gb_internal gbString write_expr_to_string(gbString str, Ast *node, bool shorthan
str = gb_string_appendc(str, " = ");
str = write_expr_to_string(str, spec->value, shorthand);
}
for (Ast *dir : spec->directives) {
str = gb_string_appendc(str, " ");
str = write_expr_to_string(str, dir, shorthand);
}
case_end;
case_ast_node(clobber, AsmClobber, node);