aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2014-10-20 12:14:27 +0200
committerBjörn Gustavsson <[email protected]>2014-10-20 12:14:27 +0200
commitc36765a19f48701c5216bc9eeb305aefe5031c71 (patch)
treee80485ce08826d6473d83860cb86a0e509ed4139 /lib/compiler/src
parent4a2fd35c20ec602a1dc8b28c0fe1906ac35a2b55 (diff)
parent9cb95b757c4f40c5b1ca1f0146ca98917d3f8668 (diff)
downloadotp-c36765a19f48701c5216bc9eeb305aefe5031c71.tar.gz
otp-c36765a19f48701c5216bc9eeb305aefe5031c71.tar.bz2
otp-c36765a19f48701c5216bc9eeb305aefe5031c71.zip
Merge branch 'tuncer/compiler/finalize-asm-deprecation/OTP-12100'
* tuncer/compiler/finalize-asm-deprecation/OTP-12100: compiler: finalize 18.x 'asm' deprecation
Diffstat (limited to 'lib/compiler/src')
-rw-r--r--lib/compiler/src/compile.erl5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl
index c7d91070f6..f347438509 100644
--- a/lib/compiler/src/compile.erl
+++ b/lib/compiler/src/compile.erl
@@ -431,11 +431,6 @@ pass(from_core) ->
{".core",[?pass(parse_core)|core_passes()]};
pass(from_asm) ->
{".S",[?pass(beam_consult_asm)|asm_passes()]};
-pass(asm) ->
- %% TODO: remove 'asm' in 18.0
- io:format("compile:file/2 option 'asm' has been deprecated and will be~n"
- "removed in the 18.0 release. Use 'from_asm' instead.~n"),
- pass(from_asm);
pass(from_beam) ->
{".beam",[?pass(read_beam_file)|binary_passes()]};
pass(_) -> none.