diff options
Diffstat (limited to 'lib/system/alloc.nim')
-rwxr-xr-x | lib/system/alloc.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/system/alloc.nim b/lib/system/alloc.nim index 5182d5ccf..82755ca86 100755 --- a/lib/system/alloc.nim +++ b/lib/system/alloc.nim @@ -11,6 +11,7 @@ # TODO: # - eliminate "used" field # - make searching for block O(1) +{.push profiler:off.} # ------------ platform specific chunk allocation code ----------------------- @@ -794,3 +795,4 @@ template InstantiateForRegion(allocator: expr) = else: result = realloc(p, newsize) +{.pop.} |