diff options
author | Björn Gustavsson <[email protected]> | 2018-09-19 09:46:46 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-09-19 09:46:46 +0200 |
commit | 70cb8976c37f6e37fdf969c434e547fde742642f (patch) | |
tree | 8959d3e733f932ee57f7775b8b2b9803d6d27629 /lib/compiler/test/misc_SUITE.erl | |
parent | b2c338cb8d84567204765db87c7299519f1e1ad6 (diff) | |
parent | 0871e4e581d3679c61b82f5552adc9192399d815 (diff) | |
download | otp-70cb8976c37f6e37fdf969c434e547fde742642f.tar.gz otp-70cb8976c37f6e37fdf969c434e547fde742642f.tar.bz2 otp-70cb8976c37f6e37fdf969c434e547fde742642f.zip |
Merge pull request #1955 from bjorng/bjorn/compiler/beam_ssa_dead
Replace beam_dead with beam_ssa_dead
Diffstat (limited to 'lib/compiler/test/misc_SUITE.erl')
-rw-r--r-- | lib/compiler/test/misc_SUITE.erl | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/compiler/test/misc_SUITE.erl b/lib/compiler/test/misc_SUITE.erl index beae5eb618..4c2d0116c9 100644 --- a/lib/compiler/test/misc_SUITE.erl +++ b/lib/compiler/test/misc_SUITE.erl @@ -234,16 +234,6 @@ silly_coverage(Config) when is_list(Config) -> {label,2}|non_proper_list]}],99}, expect_error(fun() -> beam_except:module(ExceptInput, []) end), - %% beam_dead. This is tricky. Our function must look OK to - %% beam_utils:clean_labels/1, but must crash beam_dead. - DeadInput = {?MODULE,[{foo,0}],[], - [{function,foo,0,2, - [{label,1}, - {func_info,{atom,?MODULE},{atom,foo},0}, - {label,2}, - {test,is_eq_exact,{f,1},[bad,operands]}]}],99}, - expect_error(fun() -> beam_dead:module(DeadInput, []) end), - %% beam_clean CleanInput = {?MODULE,[{foo,0}],[], [{function,foo,0,2, |