diff options
| author | gingerBill <bill@gingerbill.org> | 2018-01-21 19:30:05 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-01-21 19:30:05 +0000 |
| commit | 2ad26640a2c8579e9a9942355868d8d0fed7d569 (patch) | |
| tree | 7e70447c44f23ad2865c5fc4f1fe59bba045199f /src | |
| parent | 2c0b08145f3295586595be04e2495dabfc2580d2 (diff) | |
Revert back to `gb_memmove`
Diffstat (limited to 'src')
| -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 288ca7581..af50c1b63 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -34,7 +34,7 @@ void ir_file_buffer_write(irFileBuffer *f, void const *data, isize len) { f->offset = 0; } u8 *cursor = cast(u8 *)f->vm.data + f->offset; - memmove(cursor, data, len); + gb_memmove(cursor, data, len); f->offset += len; } |