aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-11-15 19:36:37 +0000
committergingerBill <bill@gingerbill.org>2020-11-15 19:36:37 +0000
commit0d6f5cec37e8815ff2e1c82575a05db98e4043d4 (patch)
tree0d116ce02890f1770b95f42323630c71fbfcf033 /src/ir_print.cpp
parent17ec3e72a68b805fc202174722778545c956f433 (diff)
Implement custom temporary allocator using ring buffer
Diffstat (limited to 'src/ir_print.cpp')
-rw-r--r--src/ir_print.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp
index 1a306365f..0605058ee 100644
--- a/src/ir_print.cpp
+++ b/src/ir_print.cpp
@@ -76,8 +76,6 @@ void ir_write_u64(irFileBuffer *f, u64 i) {
}
void ir_write_big_int(irFileBuffer *f, BigInt const &x, Type *type, bool swap_endian) {
if (x.len == 2) {
- SCOPED_TEMPORARY_BLOCK();
-
u64 words[2] = {};
BigInt y = x;
if (swap_endian) {