aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2014-05-23 09:24:17 +0200
committerHans Bolinder <[email protected]>2014-05-23 09:24:17 +0200
commitddf75def890d6f6a19fe46b22604ac3d8a62040a (patch)
treead63fdd7937f8b743f0e06330fee9522fa538747 /lib/hipe
parent8231acf6362e8902ca60ecabbafc18f42ec4534a (diff)
downloadotp-ddf75def890d6f6a19fe46b22604ac3d8a62040a.tar.gz
otp-ddf75def890d6f6a19fe46b22604ac3d8a62040a.tar.bz2
otp-ddf75def890d6f6a19fe46b22604ac3d8a62040a.zip
hipe: fix a bug concerning typed record fields
Diffstat (limited to 'lib/hipe')
-rw-r--r--lib/hipe/cerl/erl_types.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/hipe/cerl/erl_types.erl b/lib/hipe/cerl/erl_types.erl
index 06c0d10296..67661130a5 100644
--- a/lib/hipe/cerl/erl_types.erl
+++ b/lib/hipe/cerl/erl_types.erl
@@ -4487,7 +4487,9 @@ get_mod_record([{FieldName, DeclType}|Left1],
[{FieldName, ModType}|Left2], Acc) ->
ModTypeNoVars = subst_all_vars_to_any(ModType),
case
- contains_remote(ModTypeNoVars) orelse t_is_subtype(ModTypeNoVars, DeclType)
+ contains_remote(ModTypeNoVars)
+ orelse contains_remote(DeclType)
+ orelse t_is_subtype(ModTypeNoVars, DeclType)
of
false -> {error, FieldName};
true -> get_mod_record(Left1, Left2, [{FieldName, ModType}|Acc])