* except_native.inc renamed except_legacy.inc

This commit is contained in:
Nikolay Nikolov 2025-10-04 16:04:45 +03:00
parent 22d010b905
commit 6b133a30cf
3 changed files with 2 additions and 2 deletions

View File

@ -1401,7 +1401,7 @@ end;
{$if defined(FPC_WASM_EXNREF_EXCEPTIONS)}
{$I except_exnref.inc}
{$elseif defined(FPC_WASM_NATIVE_EXCEPTIONS)}
{$I except_native.inc}
{$I except_legacy.inc}
{$elseif defined(FPC_WASM_BRANCHFUL_EXCEPTIONS)}
{$I except_branchful.inc}
{$else}

View File

@ -2,5 +2,5 @@
# Here we set processor dependent include file names.
#
CPUNAMES=except_exnref except_native except_branchful
CPUNAMES=except_exnref except_legacy except_branchful
CPUINCNAMES=$(addsuffix .inc,$(CPUNAMES))