diff options
author | Björn Gustavsson <[email protected]> | 2019-02-18 12:44:54 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2019-02-18 12:44:54 +0100 |
commit | 67523dd74b9e21424b24bce05748b7e2f13c66b5 (patch) | |
tree | feb3878da8ee4309da0a155769fe3d02cf35e6dd /lib/compiler/src | |
parent | 2174af8288bc5d8c6b7f39daf7a61dcb63a53118 (diff) | |
parent | 5806007cbbfb20d7c6538e330558b5364fb7551f (diff) | |
download | otp-67523dd74b9e21424b24bce05748b7e2f13c66b5.tar.gz otp-67523dd74b9e21424b24bce05748b7e2f13c66b5.tar.bz2 otp-67523dd74b9e21424b24bce05748b7e2f13c66b5.zip |
Merge branch 'bjorn/compiler/cuddle-with-tests'
* bjorn/compiler/cuddle-with-tests:
inline_SUITE: Make coverage/1 test cheaper
Remove compile_SUITE:big_file/1
Add test modules that disable all SSA optimizations
Cover erl_bifs.erl
Remove attempt to handle all bs_match_string instructions
Cover exception throwing code in beam_ssa_opt
Parallelize test of listing files
Don't limit the number of processes when running cover
Diffstat (limited to 'lib/compiler/src')
-rw-r--r-- | lib/compiler/src/beam_a.erl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/compiler/src/beam_a.erl b/lib/compiler/src/beam_a.erl index 1ac892a8f1..0bccad1ecd 100644 --- a/lib/compiler/src/beam_a.erl +++ b/lib/compiler/src/beam_a.erl @@ -122,10 +122,6 @@ rename_instr({bs_private_append=I,F,Sz,U,Src,Flags,Dst}) -> {bs_init,F,{I,U,Flags},none,[Sz,Src],Dst}; rename_instr(bs_init_writable=I) -> {bs_init,{f,0},I,1,[{x,0}],{x,0}}; -rename_instr({test,bs_match_string=Op,F,[Ctx,Bits,{string,Str}]}) when is_list(Str) -> - %% When compiling from an old .S file. Starting from OTP 22, Str is a binary. - <<Bs:Bits/bits,_/bits>> = list_to_binary(Str), - {test,Op,F,[Ctx,Bs]}; rename_instr({put_map_assoc,Fail,S,D,R,L}) -> {put_map,Fail,assoc,S,D,R,L}; rename_instr({put_map_exact,Fail,S,D,R,L}) -> |