aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/compile.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-04-21 10:04:50 +0200
committerBjörn Gustavsson <[email protected]>2017-04-21 10:04:50 +0200
commit4f67e66b82c6a5c4f0b1fd7932e7e57f86dd202f (patch)
treef9873e261c0921d10cb7ef53f4e6ece035ee3355 /lib/compiler/src/compile.erl
parentb80a70b1ca7ca73a6f1c0aece098e258a0c45595 (diff)
parent033deb9af6b3755ea1ffcf3a4f31d5c458f155da (diff)
downloadotp-4f67e66b82c6a5c4f0b1fd7932e7e57f86dd202f.tar.gz
otp-4f67e66b82c6a5c4f0b1fd7932e7e57f86dd202f.tar.bz2
otp-4f67e66b82c6a5c4f0b1fd7932e7e57f86dd202f.zip
Merge branch 'bjorn/remove-r12-r15-compatibility' into run-travis
* bjorn/remove-r12-r15-compatibility: compile: Remove the r12 through r15 options test_server: Change compatibility to R16 crashdump_helper: Change compatibility to R18 Remove test case for testing compatibility with R9B Do atom roundtripping with an R16B node Remove -compile(r12)
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) ->