diff options
| author | Björn Gustavsson <[email protected]> | 2019-08-02 10:56:29 +0200 |
|---|---|---|
| committer | Björn Gustavsson <[email protected]> | 2019-08-02 10:56:29 +0200 |
| commit | 86ddfe50f282cad2f06e98ff31e61a58053dba9a (patch) | |
| tree | 0fcd27bbcd90855df737833067baa15ee527f93c /lib/compiler/test/test_lib.erl | |
| parent | cd7cad8d6ad6234bab004af800d9b28aa03aeff1 (diff) | |
| parent | 5360ede343cc21df7bfcf2291666a99cfc64b866 (diff) | |
| download | otp-86ddfe50f282cad2f06e98ff31e61a58053dba9a.tar.gz otp-86ddfe50f282cad2f06e98ff31e61a58053dba9a.tar.bz2 otp-86ddfe50f282cad2f06e98ff31e61a58053dba9a.zip | |
Merge branch 'maint'
* maint:
Fix compiler crash when compiling with +no_type_opt
Eliminate a crash in the type optimizer pass
Diffstat (limited to 'lib/compiler/test/test_lib.erl')
| -rw-r--r-- | lib/compiler/test/test_lib.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compiler/test/test_lib.erl b/lib/compiler/test/test_lib.erl index a468482acb..4b68e663cd 100644 --- a/lib/compiler/test/test_lib.erl +++ b/lib/compiler/test/test_lib.erl @@ -99,7 +99,8 @@ get_data_dir(Config) -> Data2 = re:replace(Data1, "_post_opt_SUITE", "_SUITE", Opts), Data3 = re:replace(Data2, "_inline_SUITE", "_SUITE", Opts), Data4 = re:replace(Data3, "_r21_SUITE", "_SUITE", Opts), - Data = re:replace(Data4, "_no_module_opt_SUITE", "_SUITE", Opts), + Data5 = re:replace(Data4, "_no_module_opt_SUITE", "_SUITE", Opts), + Data = re:replace(Data5, "_no_type_opt_SUITE", "_SUITE", Opts), re:replace(Data, "_no_ssa_opt_SUITE", "_SUITE", Opts). is_cloned_mod(Mod) -> |
