diff options
| author | gingerBill <bill@gingerbill.org> | 2019-02-06 13:47:52 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-02-06 13:47:52 +0000 |
| commit | bc5c37ebb188384d0a44b0b35aec9e01bc9104f0 (patch) | |
| tree | b8f6df09e06baa2011617c6799096a1f6aa39765 /src/ir_print.cpp | |
| parent | 0133dd90343261c3d8c877bfcdd6e74d0e596944 (diff) | |
Extra checks to reduce mem.zero calls
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index 531b74b2f..0587a2977 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -1109,7 +1109,7 @@ void ir_print_instr(irFileBuffer *f, irModule *m, irValue *value) { ir_print_exact_value(f, m, empty_exact_value, type); ir_write_str_lit(f, ", "); ir_print_type(f, m, type); - ir_fprintf(f, "* %%%d", instr->ZeroInit.address->index); + ir_fprintf(f, "* %%%d, align 1", instr->ZeroInit.address->index); break; } |