aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-09-02 15:36:49 +0200
committerBjörn Gustavsson <[email protected]>2016-09-21 14:07:53 +0200
commitefb9081584eeb4cd790fb0b06c90c6cd62817018 (patch)
tree96ea776d4c90aeff5160da70d807bc5c87df2e59
parentd419183bb3d2204144492104f6f33a5753127b12 (diff)
downloadotp-efb9081584eeb4cd790fb0b06c90c6cd62817018.tar.gz
otp-efb9081584eeb4cd790fb0b06c90c6cd62817018.tar.bz2
otp-efb9081584eeb4cd790fb0b06c90c6cd62817018.zip
beam_listing: Remove support for listing sys_pre_expand format
The compiler stopped using sys_pre_expand in ae3e177c514c354831.
-rw-r--r--lib/compiler/src/beam_listing.erl4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/compiler/src/beam_listing.erl b/lib/compiler/src/beam_listing.erl
index ce566373bb..d82ed8639d 100644
--- a/lib/compiler/src/beam_listing.erl
+++ b/lib/compiler/src/beam_listing.erl
@@ -49,10 +49,6 @@ module(Stream, {Mod,Exp,Attr,Code,NumLabels}) ->
[Name, Arity, Entry]),
io:put_chars(Stream, format_asm(Asm))
end, Code);
-module(Stream, {Mod,Exp,Inter}) ->
- %% Other kinds of intermediate formats.
- io:fwrite(Stream, "~w.~n~p.~n", [Mod,Exp]),
- foreach(fun (F) -> io:format(Stream, "~p.\n", [F]) end, Inter);
module(Stream, [_|_]=Fs) ->
%% Form-based abstract format.
foreach(fun (F) -> io:format(Stream, "~p.\n", [F]) end, Fs).