diff options
author | Rickard Green <[email protected]> | 2015-11-20 16:57:32 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-12-08 14:47:47 +0100 |
commit | 1cd97bc82d042bc713473932af7d6061065f6527 (patch) | |
tree | 7f3b23bb6c0aad250eaa9baadf803eb03507aaa1 /erts | |
parent | a5dd6499d53ed596e2f8aa17ee35ff87cd32fe60 (diff) | |
download | otp-1cd97bc82d042bc713473932af7d6061065f6527.tar.gz otp-1cd97bc82d042bc713473932af7d6061065f6527.tar.bz2 otp-1cd97bc82d042bc713473932af7d6061065f6527.zip |
Always use literal_alloc
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/beam/erl_alloc.c | 2 |
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; |