diff options
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index bad0e6eca..7bd79fe2e 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -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 { |