mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-05 02:04:06 +00:00
Revert back to gb_memmove
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user