mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-17 19:32:23 -07:00
Change precedence order for types e.g. ^T(x) == ^(T(x))
This commit is contained in:
+1
-2
@@ -1580,8 +1580,7 @@ void ir_print_proc(irFileBuffer *f, irModule *m, irProcedure *proc) {
|
||||
ir_fprintf(f, " noalias");
|
||||
}
|
||||
if (proc->body != nullptr) {
|
||||
if (e->token.string != "" &&
|
||||
e->token.string != "_") {
|
||||
if (e->token.string != "" && !is_blank_ident(e->token)) {
|
||||
ir_fprintf(f, " ");
|
||||
ir_print_encoded_local(f, e->token.string);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user