diff options
author | John Högberg <[email protected]> | 2018-11-02 09:38:40 +0100 |
---|---|---|
committer | John Högberg <[email protected]> | 2018-11-02 09:38:40 +0100 |
commit | f668717abf3a28692b7aa096ad7a776eb8738c7a (patch) | |
tree | 3ceb3a335f26361011de997e26740b37b1d5657e /erts/emulator/beam/atom.c | |
parent | 69797ce56c590125a664b24e16e4e6691d948883 (diff) | |
parent | 7999ddad6121db7d1b7fe44b3c6a80a8d7ff70f3 (diff) | |
download | otp-f668717abf3a28692b7aa096ad7a776eb8738c7a.tar.gz otp-f668717abf3a28692b7aa096ad7a776eb8738c7a.tar.bz2 otp-f668717abf3a28692b7aa096ad7a776eb8738c7a.zip |
Merge branch 'maint'
* maint:
Optimize operator '--' and yield on large inputs
Inline erts_cmp
Clarify a magical allocation size
Fix trapping in lists:reverse/2
Diffstat (limited to 'erts/emulator/beam/atom.c')
-rw-r--r-- | erts/emulator/beam/atom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/atom.c b/erts/emulator/beam/atom.c index 5381611fab..59b51fd15e 100644 --- a/erts/emulator/beam/atom.c +++ b/erts/emulator/beam/atom.c @@ -174,7 +174,7 @@ atom_alloc(Atom* tmpl) /* * Precompute ordinal value of first 3 bytes + 7 bits. - * This is used by utils.c:erts_cmp_atoms(). + * This is used by erl_utils.h:erts_cmp_atoms(). * We cannot use the full 32 bits of the first 4 bytes, * since we use the sign of the difference between two * ordinal values to represent their relative order. |