diff options
author | Björn Gustavsson <[email protected]> | 2015-09-28 11:42:08 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-09-28 11:42:08 +0200 |
commit | 7ca56726d7b3c8e679273950978f9f1816d4b277 (patch) | |
tree | 6954a4a604adae35c95db80390dc43c7fd1fc3bc /lib/compiler/test/misc_SUITE.erl | |
parent | 51750b8bd4d4eb08aacd2ad2bb0ac13fd6d09746 (diff) | |
parent | 464ca2f8049feec6453d2d9a327f996662978e51 (diff) | |
download | otp-7ca56726d7b3c8e679273950978f9f1816d4b277.tar.gz otp-7ca56726d7b3c8e679273950978f9f1816d4b277.tar.bz2 otp-7ca56726d7b3c8e679273950978f9f1816d4b277.zip |
Merge branch 'bjorn/compiler/misc'
* bjorn/compiler/misc:
Move select_val optimization from beam_clean to beam_peep
beam_type: Improve optimizations by keeping track of booleans
beam_type: Improve optimization by keeping track of integers
beam_type: Remove unused clause
beam_type: Fix forgotten change of internal representation
beam_dead: Improve optimization of literal binary matching
beam_dead: Optimize select_val instructions
Move out bit syntax optimizations from beam_block
sys_core_fold: Extend the list of BIFs that return integers
v3_codegen: Optimize matching of the final size-less binary segment
Regain full coverage of beam_block
Diffstat (limited to 'lib/compiler/test/misc_SUITE.erl')
-rw-r--r-- | lib/compiler/test/misc_SUITE.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compiler/test/misc_SUITE.erl b/lib/compiler/test/misc_SUITE.erl index 3582e055c8..b88abaf62d 100644 --- a/lib/compiler/test/misc_SUITE.erl +++ b/lib/compiler/test/misc_SUITE.erl @@ -208,6 +208,10 @@ silly_coverage(Config) when is_list(Config) -> {label,2}|non_proper_list]}],99}, ?line expect_error(fun() -> beam_block:module(BlockInput, []) end), + %% beam_bs + BsInput = BlockInput, + expect_error(fun() -> beam_bs:module(BsInput, []) end), + %% beam_type TypeInput = {?MODULE,[{foo,0}],[], [{function,foo,0,2, |