diff options
author | Björn Gustavsson <[email protected]> | 2013-08-14 13:16:00 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-08-15 12:21:06 +0200 |
commit | 8e10c8aac09de9165deb1c04cd908c8057c7f173 (patch) | |
tree | 9c9d5af889e78221bd422859461ab4e95c59b21f /lib/compiler/src | |
parent | fd3e32e7a13b522a04e17c815bba11d307fa1049 (diff) | |
download | otp-8e10c8aac09de9165deb1c04cd908c8057c7f173.tar.gz otp-8e10c8aac09de9165deb1c04cd908c8057c7f173.tar.bz2 otp-8e10c8aac09de9165deb1c04cd908c8057c7f173.zip |
Fix compiler crash for 'B and B' guard
Diffstat (limited to 'lib/compiler/src')
-rw-r--r-- | lib/compiler/src/beam_bool.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/compiler/src/beam_bool.erl b/lib/compiler/src/beam_bool.erl index cf5455dfde..124abd13c1 100644 --- a/lib/compiler/src/beam_bool.erl +++ b/lib/compiler/src/beam_bool.erl @@ -425,6 +425,9 @@ bopt_tree([], Forest, Pre) -> safe_bool_op(N, Ar) -> erl_internal:new_type_test(N, Ar) orelse erl_internal:comp_op(N, Ar). +bopt_bool_args([V0,V0], Forest0) -> + {V,Forest} = bopt_bool_arg(V0, Forest0), + {[V,V],Forest}; bopt_bool_args(As, Forest) -> mapfoldl(fun bopt_bool_arg/2, Forest, As). |