diff options
author | Björn Gustavsson <[email protected]> | 2019-05-22 11:27:26 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2019-05-22 11:27:26 +0200 |
commit | 13833d876d103c03df4967e1fb249cdb8d30bc0b (patch) | |
tree | c8db9d7a693baa0132ea5bbfd9ad0ecf71b2688f /lib/compiler/test | |
parent | cc763c935f17d5799d30fac53725965b93c5ab45 (diff) | |
parent | 331de9413f4f82db41dfbe60f521b21880b6688e (diff) | |
download | otp-13833d876d103c03df4967e1fb249cdb8d30bc0b.tar.gz otp-13833d876d103c03df4967e1fb249cdb8d30bc0b.tar.bz2 otp-13833d876d103c03df4967e1fb249cdb8d30bc0b.zip |
Merge pull request #2237 from bjorng/bjorn/compiler/eliminate-beam_except
Eliminate the beam_except pass
Diffstat (limited to 'lib/compiler/test')
-rw-r--r-- | lib/compiler/test/compile_SUITE.erl | 1 | ||||
-rw-r--r-- | lib/compiler/test/misc_SUITE.erl | 9 |
2 files changed, 0 insertions, 10 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl index 53627b9d81..1e6ea4800f 100644 --- a/lib/compiler/test/compile_SUITE.erl +++ b/lib/compiler/test/compile_SUITE.erl @@ -378,7 +378,6 @@ do_file_listings(DataDir, PrivDir, [File|Files]) -> {dprecg, ".precodegen"}, {dcg, ".codegen"}, {dblk, ".block"}, - {dexcept, ".except"}, {djmp, ".jump"}, {dclean, ".clean"}, {dpeep, ".peep"}, diff --git a/lib/compiler/test/misc_SUITE.erl b/lib/compiler/test/misc_SUITE.erl index a0b415ceaa..eb60dc049d 100644 --- a/lib/compiler/test/misc_SUITE.erl +++ b/lib/compiler/test/misc_SUITE.erl @@ -227,15 +227,6 @@ silly_coverage(Config) when is_list(Config) -> {label,2}|non_proper_list]}],99}, expect_error(fun() -> beam_block:module(BlockInput, []) end), - %% beam_except - ExceptInput = {?MODULE,[{foo,0}],[], - [{function,foo,0,2, - [{label,1}, - {line,loc}, - {func_info,{atom,?MODULE},{atom,foo},0}, - {label,2}|non_proper_list]}],99}, - expect_error(fun() -> beam_except:module(ExceptInput, []) end), - %% beam_jump JumpInput = BlockInput, expect_error(fun() -> beam_jump:module(JumpInput, []) end), |