From 39016c032ebf317a199ce3bb5af49e8c78c212e9 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Fri, 7 Aug 2015 15:02:55 +0000 Subject: [PATCH] Fix for Mantis #28442. Do not generate the VMT record definition for generic classes. It isn't used anyway. nobj.pas, TVMTBuilder: * generate_vmt_def: check for df_generic (not is_generic!) and abort if set + added test git-svn-id: trunk@31301 - --- .gitattributes | 2 ++ compiler/nobj.pas | 6 ++++++ tests/webtbs/tw28442.pp | 12 ++++++++++++ tests/webtbs/uw28442.pp | 33 +++++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+) create mode 100644 tests/webtbs/tw28442.pp create mode 100644 tests/webtbs/uw28442.pp diff --git a/.gitattributes b/.gitattributes index b3f41fd4ab..f69f19fe79 100644 --- a/.gitattributes +++ b/.gitattributes @@ -14678,6 +14678,7 @@ tests/webtbs/tw2832.pp svneol=native#text/plain tests/webtbs/tw2834.pp svneol=native#text/plain tests/webtbs/tw28372.pp svneol=native#text/plain tests/webtbs/tw2841.pp svneol=native#text/plain +tests/webtbs/tw28442.pp svneol=native#text/pascal tests/webtbs/tw28475.pp svneol=native#text/plain tests/webtbs/tw2853.pp svneol=native#text/plain tests/webtbs/tw2853a.pp svneol=native#text/plain @@ -15397,6 +15398,7 @@ tests/webtbs/uw2731.pp svneol=native#text/plain 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/uw2920.pp svneol=native#text/plain tests/webtbs/uw2956.pp svneol=native#text/plain tests/webtbs/uw2984.pp svneol=native#text/plain diff --git a/compiler/nobj.pas b/compiler/nobj.pas index 7acc3ed732..624edf89ff 100644 --- a/compiler/nobj.pas +++ b/compiler/nobj.pas @@ -808,6 +808,12 @@ implementation odt_interfacejava] then exit; + { don't generate VMT for generics (only use duplicates/overrides detection) } + { Note: don't use is_generic here as we also need to check nested non- + generic classes } + if df_generic in _class.defoptions then + exit; + { todo in the future } if _class.objecttype = odt_cppclass then exit; diff --git a/tests/webtbs/tw28442.pp b/tests/webtbs/tw28442.pp new file mode 100644 index 0000000000..ae7af93ec5 --- /dev/null +++ b/tests/webtbs/tw28442.pp @@ -0,0 +1,12 @@ +{ %RECOMPILE } + +unit tw28442; + +interface + +uses + uw28442; + +implementation + +end. diff --git a/tests/webtbs/uw28442.pp b/tests/webtbs/uw28442.pp new file mode 100644 index 0000000000..9e74719658 --- /dev/null +++ b/tests/webtbs/uw28442.pp @@ -0,0 +1,33 @@ +unit uw28442; + +{$MODE DELPHI}{$H+} + +interface + +type + TEqualityComparer = class + public + class function Construct: TEqualityComparer; + + function Test: Boolean; virtual; abstract; + end; + + TDelegatedEqualityComparerEvents = class(TEqualityComparer) + public + function Test: Boolean; override; + end; + +implementation + +class function TEqualityComparer.Construct: TEqualityComparer; +begin + Result := TDelegatedEqualityComparerEvents.Create; +end; + +function TDelegatedEqualityComparerEvents.Test: Boolean; +begin + Result := False; +end; + +end. +