aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-05-08 10:46:12 +0200
committerGitHub <[email protected]>2017-05-08 10:46:12 +0200
commit0be5bebb76d8685f0ecb28f80928c7a3f3a4b3ed (patch)
treef46acef928e06dac39eb4ddf57f860c75c913922 /lib/compiler
parent9ac8bdb19f55c593b8b4b10a5d72032e33bef406 (diff)
parent23dfc06144c42693ea92f6ab7e21d20d0cd6fec3 (diff)
downloadotp-0be5bebb76d8685f0ecb28f80928c7a3f3a4b3ed.tar.gz
otp-0be5bebb76d8685f0ecb28f80928c7a3f3a4b3ed.tar.bz2
otp-0be5bebb76d8685f0ecb28f80928c7a3f3a4b3ed.zip
Merge pull request #1442 from bjorng/bjorn/compiler/fix-slim
Make 'slim' slim again
Diffstat (limited to 'lib/compiler')
-rw-r--r--lib/compiler/src/beam_asm.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/beam_asm.erl b/lib/compiler/src/beam_asm.erl
index 6d5071271c..c35efdfc9d 100644
--- a/lib/compiler/src/beam_asm.erl
+++ b/lib/compiler/src/beam_asm.erl
@@ -194,7 +194,7 @@ build_file(Code, Attr, Dict, NumLabels, NumFuncs, ExtraChunks, SourceFile, Opts,
Chunks = case member(slim, Opts) of
true ->
- [Essentials,AttrChunk,CheckedChunks];
+ [Essentials,AttrChunk];
false ->
[Essentials,LocChunk,AttrChunk,
CompileChunk,CheckedChunks,LineChunk]