diff options
Diffstat (limited to 'lib/compiler/src')
| -rw-r--r-- | lib/compiler/src/beam_call_types.erl | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/compiler/src/beam_call_types.erl b/lib/compiler/src/beam_call_types.erl index d091b7866d..e72250ab37 100644 --- a/lib/compiler/src/beam_call_types.erl +++ b/lib/compiler/src/beam_call_types.erl @@ -198,7 +198,7 @@ types(erlang, element, [PosType, TupleType]) ->  types(erlang, setelement, [PosType, TupleType, ArgType]) ->      RetType = case {PosType,TupleType} of                    {#t_integer{elements={Index,Index}}, -                   #t_tuple{elements=Es0,size=Size}=T} -> +                   #t_tuple{elements=Es0,size=Size}=T} when Index >= 1 ->                        %% This is an exact index, update the type of said                        %% element or return 'none' if it's known to be out of                        %% bounds. @@ -212,7 +212,7 @@ types(erlang, setelement, [PosType, TupleType, ArgType]) ->                                none                        end;                    {#t_integer{elements={Min,Max}}, -                   #t_tuple{elements=Es0,size=Size}=T} -> +                   #t_tuple{elements=Es0,size=Size}=T} when Min >= 1 ->                        %% We know this will land between Min and Max, so kill                        %% the types for those indexes.                        Es = discard_tuple_element_info(Min, Max, Es0), | 
