aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/compile.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-04-19 13:06:59 +0200
committerBjörn Gustavsson <[email protected]>2017-04-20 12:07:58 +0200
commit033deb9af6b3755ea1ffcf3a4f31d5c458f155da (patch)
tree249c7237db5dcedd7cf02790c20a0409dbe3dc21 /lib/compiler/src/compile.erl
parent4a87f2391ef84bf3fdac6c5d0a41db097de1f8f3 (diff)
downloadotp-033deb9af6b3755ea1ffcf3a4f31d5c458f155da.tar.gz
otp-033deb9af6b3755ea1ffcf3a4f31d5c458f155da.tar.bz2
otp-033deb9af6b3755ea1ffcf3a4f31d5c458f155da.zip
compile: Remove the r12 through r15 options
The main purpose of these options is compatibility with old Erlang systems. Since it is no longer possible to communicate with R15B or earlier, we no longer need the r12 through r15 options.
Diffstat (limited to 'lib/compiler/src/compile.erl')
-rw-r--r--lib/compiler/src/compile.erl8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl
index 03b52932d1..019d8ba864 100644
--- a/lib/compiler/src/compile.erl
+++ b/lib/compiler/src/compile.erl
@@ -213,14 +213,6 @@ expand_opt(report, Os) ->
[report_errors,report_warnings|Os];
expand_opt(return, Os) ->
[return_errors,return_warnings|Os];
-expand_opt(r12, Os) ->
- [no_recv_opt,no_line_info,no_utf8_atoms|Os];
-expand_opt(r13, Os) ->
- [no_record_opt,no_recv_opt,no_line_info,no_utf8_atoms|Os];
-expand_opt(r14, Os) ->
- [no_record_opt,no_line_info,no_utf8_atoms|Os];
-expand_opt(r15, Os) ->
- [no_record_opt,no_utf8_atoms|Os];
expand_opt(r16, Os) ->
[no_record_opt,no_utf8_atoms|Os];
expand_opt(r17, Os) ->