From 036c9f7ff2e03dfa0732086d99d616a666f181cd Mon Sep 17 00:00:00 2001 From: svenbarth Date: Sat, 19 Dec 2020 21:21:05 +0000 Subject: [PATCH] --- Merging r45365 into '.': U compiler/systems/t_embed.pas --- Recording mergeinfo for merge of r45365 into '.': U . --- Merging r45707 into '.': U compiler/defcmp.pas A tests/tbs/tb0675.pp --- Recording mergeinfo for merge of r45707 into '.': G . --- Merging r46279 into '.': U compiler/pexpr.pas A tests/test/tarrconstr8.pp --- Recording mergeinfo for merge of r46279 into '.': G . --- Merging r47110 into '.': U compiler/symdef.pas A tests/tbs/tb0679.pp A tests/tbs/tb0680.pp --- Recording mergeinfo for merge of r47110 into '.': G . git-svn-id: branches/fixes_3_2@47819 - --- .gitattributes | 4 ++++ compiler/defcmp.pas | 16 +++++++++++-- compiler/pexpr.pas | 22 +++++++++++++----- compiler/symdef.pas | 9 +++++++- compiler/systems/t_embed.pas | 4 ++++ tests/tbs/tb0675.pp | 45 ++++++++++++++++++++++++++++++++++++ tests/tbs/tb0679.pp | 28 ++++++++++++++++++++++ tests/tbs/tb0680.pp | 26 +++++++++++++++++++++ tests/test/tarrconstr8.pp | 13 +++++++++++ 9 files changed, 158 insertions(+), 9 deletions(-) create mode 100644 tests/tbs/tb0675.pp create mode 100644 tests/tbs/tb0679.pp create mode 100644 tests/tbs/tb0680.pp create mode 100644 tests/test/tarrconstr8.pp diff --git a/.gitattributes b/.gitattributes index d833fd54b7..df5c4a050e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12934,9 +12934,12 @@ tests/tbs/tb0668a.pp svneol=native#text/pascal tests/tbs/tb0668b.pp svneol=native#text/pascal tests/tbs/tb0669.pp svneol=native#text/pascal tests/tbs/tb0670.pp svneol=native#text/pascal +tests/tbs/tb0675.pp svneol=native#text/pascal tests/tbs/tb0676.pp svneol=native#text/pascal tests/tbs/tb0677.pp svneol=native#text/pascal tests/tbs/tb0678.pp svneol=native#text/pascal +tests/tbs/tb0679.pp svneol=native#text/pascal +tests/tbs/tb0680.pp svneol=native#text/pascal tests/tbs/tb205.pp svneol=native#text/plain tests/tbs/tb610.pp svneol=native#text/pascal tests/tbs/tb613.pp svneol=native#text/plain @@ -13957,6 +13960,7 @@ tests/test/tarrconstr4.pp svneol=native#text/pascal tests/test/tarrconstr5.pp svneol=native#text/pascal tests/test/tarrconstr6.pp svneol=native#text/pascal tests/test/tarrconstr7.pp svneol=native#text/pascal +tests/test/tarrconstr8.pp svneol=native#text/pascal tests/test/tasm1.pp svneol=native#text/plain tests/test/tasm10.pp svneol=native#text/plain tests/test/tasm10a.pp svneol=native#text/plain diff --git a/compiler/defcmp.pas b/compiler/defcmp.pas index aa6eddee4e..bbc60d1a38 100644 --- a/compiler/defcmp.pas +++ b/compiler/defcmp.pas @@ -822,7 +822,14 @@ implementation { the orddef < currency (then it will get convert l3, } { and conversion to float is favoured) } doconv:=tc_int_2_real; - eq:=te_convert_l2; + if is_extended(def_to) then + eq:=te_convert_l2 + else if is_double(def_to) then + eq:=te_convert_l3 + else if is_single(def_to) then + eq:=te_convert_l4 + else + eq:=te_convert_l2; end; end; floatdef : @@ -843,7 +850,12 @@ implementation { do we lose precision? } if (def_to.size 2 then + Halt(1); +{$ifdef FPC_HAS_TYPE_EXTENDED} + if Test2(a) <> 3 then + Halt(2); +{$endif} +end. diff --git a/tests/tbs/tb0679.pp b/tests/tbs/tb0679.pp new file mode 100644 index 0000000000..9d478152c4 --- /dev/null +++ b/tests/tbs/tb0679.pp @@ -0,0 +1,28 @@ +{ %NORUN } + +program tb0679; + +{$mode objfpc} + +type + TA = class + public + class destructor Destroy; + destructor Destroy; override; + end; + +class destructor TA.Destroy; +begin +end; + +destructor TA.Destroy; +begin + inherited; +end; + +var + A: TA; +begin + A := TA.Create; + A.Free; +end. diff --git a/tests/tbs/tb0680.pp b/tests/tbs/tb0680.pp new file mode 100644 index 0000000000..9af01fbf40 --- /dev/null +++ b/tests/tbs/tb0680.pp @@ -0,0 +1,26 @@ +{ %NORUN } + +program tb0680; + +{$mode objfpc}{$H+} +{$modeswitch advancedrecords} + +type + TTest = record + class operator + (aLeft, aRight: TTest): TTest; + function Plus(aLeft, aRight: TTest): TTest; + end; + +class operator TTest.+(aLeft, aRight: TTest): TTest; +begin + +end; + +function TTest.Plus(aLeft, aRight: TTest): TTest; +begin + +end; + +begin + +end. diff --git a/tests/test/tarrconstr8.pp b/tests/test/tarrconstr8.pp new file mode 100644 index 0000000000..4e208f05fe --- /dev/null +++ b/tests/test/tarrconstr8.pp @@ -0,0 +1,13 @@ +{ %FAIL } + +program tarrconstr8; + +type + TLongIntArray = array of LongInt; + +var + arr: TLongIntArray; +begin + // Create *must* be used on a type + arr := arr.Create(1, 2); +end.