Fix for Mantis #28766.

ncgrtti.pas, write_persistent_type_info:
  * do not generate RTTI information for generics

git-svn-id: trunk@31911 -
This commit is contained in:
svenbarth 2015-10-02 13:06:51 +00:00
parent c25e7491e7
commit 3afc18f277
4 changed files with 29 additions and 3 deletions

2
.gitattributes vendored
View File

@ -14758,6 +14758,7 @@ tests/webtbs/tw28718b.pp svneol=native#text/plain
tests/webtbs/tw28718c.pp svneol=native#text/plain
tests/webtbs/tw28718d.pp svneol=native#text/plain
tests/webtbs/tw2876.pp svneol=native#text/plain
tests/webtbs/tw28766.pp svneol=native#text/pascal
tests/webtbs/tw2883.pp svneol=native#text/plain
tests/webtbs/tw2885.pp svneol=native#text/plain
tests/webtbs/tw2886.pp svneol=native#text/plain
@ -15468,6 +15469,7 @@ tests/webtbs/uw27320.defaults.pp svneol=native#text/pascal
tests/webtbs/uw2738.pp svneol=native#text/plain
tests/webtbs/uw2834.pp svneol=native#text/plain
tests/webtbs/uw28442.pp svneol=native#text/pascal
tests/webtbs/uw28766.pp svneol=native#text/pascal
tests/webtbs/uw2920.pp svneol=native#text/plain
tests/webtbs/uw2956.pp svneol=native#text/plain
tests/webtbs/uw2984.pp svneol=native#text/plain

View File

@ -109,14 +109,16 @@ implementation
for i:=0 to st.DefList.Count-1 do
begin
def:=tdef(st.DefList[i]);
{ skip generics }
if [df_generic,df_genconstraint]*def.defoptions<>[] then
continue;
case def.typ of
recorddef:
write_persistent_type_info(trecorddef(def).symtable,is_global);
objectdef :
begin
{ Skip generics and forward defs }
if ([df_generic,df_genconstraint]*def.defoptions<>[]) or
(oo_is_forward in tobjectdef(def).objectoptions) then
{ Skip forward defs }
if (oo_is_forward in tobjectdef(def).objectoptions) then
continue;
write_persistent_type_info(tobjectdef(def).symtable,is_global);
end;

9
tests/webtbs/tw28766.pp Normal file
View File

@ -0,0 +1,9 @@
{ %NORUN }
program tw28766;
uses
uw28766;
begin
end.

13
tests/webtbs/uw28766.pp Normal file
View File

@ -0,0 +1,13 @@
unit uw28766;
{$mode delphi}
interface
type
TSimpleGeneric<A, B> = function(constref Value: A): B;
implementation
end.