aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2015-11-20 16:57:32 +0100
committerRickard Green <[email protected]>2015-12-08 14:47:47 +0100
commit1cd97bc82d042bc713473932af7d6061065f6527 (patch)
tree7f3b23bb6c0aad250eaa9baadf803eb03507aaa1
parenta5dd6499d53ed596e2f8aa17ee35ff87cd32fe60 (diff)
downloadotp-1cd97bc82d042bc713473932af7d6061065f6527.tar.gz
otp-1cd97bc82d042bc713473932af7d6061065f6527.tar.bz2
otp-1cd97bc82d042bc713473932af7d6061065f6527.zip
Always use literal_alloc
-rw-r--r--erts/emulator/beam/erl_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_alloc.c b/erts/emulator/beam/erl_alloc.c
index 019aa0f16c..5574a3b713 100644
--- a/erts/emulator/beam/erl_alloc.c
+++ b/erts/emulator/beam/erl_alloc.c
@@ -290,7 +290,7 @@ static void
set_default_literal_alloc_opts(struct au_init *ip)
{
SET_DEFAULT_ALLOC_OPTS(ip);
- ip->enable = AU_ALLOC_DEFAULT_ENABLE(1);
+ ip->enable = 1;
ip->thr_spec = 0;
ip->atype = BESTFIT;
ip->init.bf.ao = 1;