diff --git a/compiler/msg/errore.msg b/compiler/msg/errore.msg index ad161dc314..99c4f11a63 100644 --- a/compiler/msg/errore.msg +++ b/compiler/msg/errore.msg @@ -2481,7 +2481,7 @@ cg_e_function_not_support_by_selected_instruction_set=06056_E_The function used, cg_f_max_units_reached=06057_F_Maximum number of units ($1) reached for the current target % Depending of target architecture, the number of units is limited. This limit % has been reached. A unit counts only if it contains initialization or finalization count. -cg_h_no_inline=06058_H_Call to subroutine "$1" marked as inline is not inlined +cg_n_no_inline=06058_N_Call to subroutine "$1" marked as inline is not inlined % The directive inline is only a hint to the compiler. Sometimes the compiler ignores this hint, a subroutine % marked as inline is not inlined. In this case, this hint is given. Compiling with \var{-vd} might result in more information why % the directive inline is ignored. diff --git a/compiler/msgidx.inc b/compiler/msgidx.inc index 85c073e07b..7e8c3ab60c 100644 --- a/compiler/msgidx.inc +++ b/compiler/msgidx.inc @@ -689,7 +689,7 @@ const cg_d_autoinlining=06055; cg_e_function_not_support_by_selected_instruction_set=06056; cg_f_max_units_reached=06057; - cg_h_no_inline=06058; + cg_n_no_inline=06058; asmr_d_start_reading=07000; asmr_d_finish_reading=07001; asmr_e_none_label_contain_at=07002; diff --git a/compiler/msgtxt.inc b/compiler/msgtxt.inc index 18090aec31..a48dee96ae 100644 --- a/compiler/msgtxt.inc +++ b/compiler/msgtxt.inc @@ -863,7 +863,7 @@ const msgtxt : array[0..000340,1..240] of char=( '06056_E_The function used, is not supported by the selected instructio'+ 'n set: $1'#000+ '06057_F_Maximum number of units ($1) reached for the curr','ent target'#000+ - '06058_H_Call to subroutine "$1" marked as inline is not inlined'#000+ + '06058_N_Call to subroutine "$1" marked as inline is not inlined'#000+ '07000_DL_Starting $1 styled assembler parsing'#000+ '07001_DL_Finished $1 styled assembler parsing'#000+ '07002_E_Non-label pattern contains @'#000+ diff --git a/compiler/ncal.pas b/compiler/ncal.pas index 67787ab890..7071632f35 100644 --- a/compiler/ncal.pas +++ b/compiler/ncal.pas @@ -4373,7 +4373,7 @@ implementation else begin if (po_inline in procdefinition.procoptions) and not(po_compilerproc in procdefinition.procoptions) then - Message1(cg_h_no_inline,tprocdef(procdefinition).customprocname([pno_proctypeoption, pno_paranames,pno_ownername, pno_noclassmarker])); + Message1(cg_n_no_inline,tprocdef(procdefinition).customprocname([pno_proctypeoption, pno_paranames,pno_ownername, pno_noclassmarker])); mark_unregable_parameters; result:=pass1_normal; end; diff --git a/tests/webtbf/tw31717.pp b/tests/webtbf/tw31717.pp index 61ff78d4f4..2cafa207e2 100644 --- a/tests/webtbf/tw31717.pp +++ b/tests/webtbf/tw31717.pp @@ -1,5 +1,5 @@ { %fail } -{ %OPT=-vh -Seh } +{ %OPT=-vn -Sen } {$mode objfpc} program Project1;