diff options
author | Björn Gustavsson <[email protected]> | 2010-03-16 16:13:54 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-03-22 18:20:13 +0100 |
commit | d179c1522c73de550bce45c7f5d5055e04b93f32 (patch) | |
tree | 28fe63f24211516ce9141b31382a3911dd71ed3b /lib/compiler/src/compile.erl | |
parent | bba60738a4de2528a361d815895191e8e0efd529 (diff) | |
download | otp-d179c1522c73de550bce45c7f5d5055e04b93f32.tar.gz otp-d179c1522c73de550bce45c7f5d5055e04b93f32.tar.bz2 otp-d179c1522c73de550bce45c7f5d5055e04b93f32.zip |
compiler: Don't support the no_binaries option
The no_binaries option terminates the compiler with an error
if any bit syntax is used in the module being compiled.
(It used to be implied by the removed r11 option.)
Diffstat (limited to 'lib/compiler/src/compile.erl')
-rw-r--r-- | lib/compiler/src/compile.erl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl index eaec5a6d78..5017fd2c23 100644 --- a/lib/compiler/src/compile.erl +++ b/lib/compiler/src/compile.erl @@ -164,9 +164,6 @@ expand_opt(return, Os) -> [return_errors,return_warnings|Os]; expand_opt({debug_info_key,_}=O, Os) -> [encrypt_debug_info,O|Os]; -expand_opt(no_binaries=O, Os) -> - %%Turn off the entire type optimization pass. - [no_topt,O|Os]; expand_opt(no_float_opt, Os) -> %%Turn off the entire type optimization pass. [no_topt|Os]; |