Skip to content

Commit 2f31eb5

Browse files
committed
changelog: pull request 427
- fbc: command line option '-z optabstract' to support optimizing purely abstract types, and only preserve used pure abstract types (skyfish)
1 parent f5b4c83 commit 2f31eb5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

changelog.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ Version 1.20.0
6363
- fbc: intrinsic define __FB_OPTION_PROFILE__ to indicate if profiling is currently enabled for code generation
6464
- rtlib: ./fbc-int/profile.bi - extra features for working with the built-in profiler; ProfileSetFileName(), ProfileGetOptions(), ProfileSetOptions(). ProfileIgnore()
6565
- '-earraydims' command line option to enable array dimensions checking. Enabled by default with '-exx' command line option.
66-
- github #426: add __FB_ARG_LISTEXPAND__( macroname, macroargcount, args... ): expands to one or more 'macroname( .... )' depending on the value of macroargcount and number of arguments in the args... list (skyfish)
66+
- github #426: add __FB_ARG_LISTEXPAND__( macroname, macroargcount, args... ): expands to one or more 'macroname( .... )' depending on the value of macroargcount and number of arguments in the args... list (skyfish)
67+
- fbc: command line option '-z optabstract' to support optimizing purely abstract types, and only preserve used pure abstract types (skyfish)
6768

6869
[fixed]
6970
- github #410: give consistent floating point comparisons results involving NaNs.

src/compiler/symb-comp.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ sub symbUdtImplementDefaultMembers _
827827
'' (for which the rtlib already contains these declarations)
828828
if( udt <> symb.rtti.fb_object ) then
829829
dim as integer iRet = hBuildRtti( udt )
830-
hBuildVtable( udt )
830+
hBuildVtable( udt )
831831
if iRet = FALSE then return
832832
end if
833833
end if

0 commit comments

Comments
 (0)