From f9211271d53189bdad07b6bc600f4bde39f42153 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Sun, 24 Jun 2012 10:43:28 +0000 Subject: [PATCH] Fix for Mantis #22154: * ptype.pas, read_named_type, array_dec: allow border checks if both range elements are orddefs; for normal arrays using e.g. "0..15" this will allow to declare the correct amount of elements in the initialization while for generic arrays (e.g. "0..SizeOf(T)") this will mean that only one element can be declared, which was already the case before this change (maybe in such cases a constant initialization should be forbidden in the future...) + added test git-svn-id: trunk@21690 - --- .gitattributes | 1 + compiler/ptype.pas | 62 ++++++++++++++++++++--------------------- tests/webtbs/tw22154.pp | 18 ++++++++++++ 3 files changed, 50 insertions(+), 31 deletions(-) create mode 100644 tests/webtbs/tw22154.pp diff --git a/.gitattributes b/.gitattributes index e3ed8e9d2e..a170873eeb 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12659,6 +12659,7 @@ tests/webtbs/tw2198.pp svneol=native#text/plain tests/webtbs/tw2210.pp svneol=native#text/plain tests/webtbs/tw22133.pp svneol=native#text/plain tests/webtbs/tw2214.pp svneol=native#text/plain +tests/webtbs/tw22154.pp svneol=native#text/pascal tests/webtbs/tw2220.pp svneol=native#text/plain tests/webtbs/tw2226.pp svneol=native#text/plain tests/webtbs/tw2229.pp svneol=native#text/plain diff --git a/compiler/ptype.pas b/compiler/ptype.pas index cf2d8a0af8..cd747b1405 100644 --- a/compiler/ptype.pas +++ b/compiler/ptype.pas @@ -1163,40 +1163,40 @@ implementation begin if pt.nodetype=rangen then begin - { check the expression only if we are not in a generic declaration } - if not(parse_generic) then + { pure ordconstn expressions can be checked for + generics as well, but don't give an error in case + of parsing a generic if that isn't yet the case } + if (trangenode(pt).left.nodetype=ordconstn) and + (trangenode(pt).right.nodetype=ordconstn) then begin - if (trangenode(pt).left.nodetype=ordconstn) and - (trangenode(pt).right.nodetype=ordconstn) then + { make both the same type or give an error. This is not + done when both are integer values, because typecasting + between -3200..3200 will result in a signed-unsigned + conflict and give a range check error (PFV) } + if not(is_integer(trangenode(pt).left.resultdef) and is_integer(trangenode(pt).left.resultdef)) then + inserttypeconv(trangenode(pt).left,trangenode(pt).right.resultdef); + lowval:=tordconstnode(trangenode(pt).left).value; + highval:=tordconstnode(trangenode(pt).right).value; + if highvalhigh(asizeint)) then begin - { make both the same type or give an error. This is not - done when both are integer values, because typecasting - between -3200..3200 will result in a signed-unsigned - conflict and give a range check error (PFV) } - if not(is_integer(trangenode(pt).left.resultdef) and is_integer(trangenode(pt).left.resultdef)) then - inserttypeconv(trangenode(pt).left,trangenode(pt).right.resultdef); - lowval:=tordconstnode(trangenode(pt).left).value; - highval:=tordconstnode(trangenode(pt).right).value; - if highvalhigh(asizeint)) then - begin - Message(parser_e_array_range_out_of_bounds); - lowval :=0; - highval:=0; - end; - if is_integer(trangenode(pt).left.resultdef) then - range_to_type(lowval,highval,indexdef) - else - indexdef:=trangenode(pt).left.resultdef; - end + Message(parser_e_array_range_out_of_bounds); + lowval :=0; + highval:=0; + end; + if is_integer(trangenode(pt).left.resultdef) then + range_to_type(lowval,highval,indexdef) else - Message(type_e_cant_eval_constant_expr); - end; + indexdef:=trangenode(pt).left.resultdef; + end + else + if not parse_generic then + Message(type_e_cant_eval_constant_expr); end else Message(sym_e_error_in_type_def) diff --git a/tests/webtbs/tw22154.pp b/tests/webtbs/tw22154.pp new file mode 100644 index 0000000000..775c14b562 --- /dev/null +++ b/tests/webtbs/tw22154.pp @@ -0,0 +1,18 @@ +program tw22154; + +{$MODE DELPHI} + +type + TWrapper = class + procedure Z; + end; + +procedure TWrapper.Z; +const + A0: array [0..0] of Integer = (0); { OK } + A1: array [0..1] of Integer = (0, 1); { Comma not exepcted } +begin +end; + +begin +end.