* give an internalerror if a setelementn is range in pass_generate_code,

as those constructs should have been converted to calls to
    fpc_varset_set_range by the parent addn

git-svn-id: trunk@32293 -
This commit is contained in:
Jonas Maebe 2015-11-11 20:46:49 +00:00
parent 3e917f5889
commit 175f4376bc

View File

@ -101,22 +101,18 @@ implementation
procedure tcgsetelementnode.pass_generate_code;
begin
{ load first value in 32bit register }
secondpass(left);
if left.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
hlcg.location_force_reg(current_asmdata.CurrAsmList,left.location,left.resultdef,u32inttype,false);
{ load first value in 32bit register }
secondpass(left);
if left.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
hlcg.location_force_reg(current_asmdata.CurrAsmList,left.location,left.resultdef,u32inttype,false);
{ also a second value ? }
{ also a second value ? }
if assigned(right) then
begin
secondpass(right);
if codegenerror then
exit;
if right.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
hlcg.location_force_reg(current_asmdata.CurrAsmList,right.location,right.resultdef,u32inttype,false);
end;
internalerror(2015111106);
{ we doesn't modify the left side, we check only the type }
{ we don't modify the left side, we only check the location type; our
parent node (an add-node) will use the resulting location to perform
the set operation without creating an intermediate set }
location_copy(location,left.location);
end;