This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
embed.fnc: Reorder some comments
authorKarl Williamson <khw@cpan.org>
Fri, 17 Jul 2020 00:07:54 +0000 (18:07 -0600)
committerKarl Williamson <khw@cpan.org>
Sat, 18 Jul 2020 03:51:39 +0000 (21:51 -0600)
A block of text is moved to after something that is helpful to have read
first.

embed.fnc

index 483b534..31fb827 100644 (file)
--- a/embed.fnc
+++ b/embed.fnc
 :      pod, such as perlguts or warnings.h.  This flag is useful for downstream
 :      programs, such as Devel::PPPort.
 :
-:   I  This flag works exactly the same as 'i' but it also adds
-:      __attribute__((always_inline)) or __forceinline if either of them is
-:      supported by the compiler.
-:
-:         proto.h: function is declared as PERL_STATIC_FORCE_INLINE and
-:                  __attribute__always_inline__ is added
-:
 :   i  inline static.  This is used for functions that the compiler is being
 :      requested to inline.  If the function is in a header file its
 :      definition will be visible (unless guarded by #if..#endif) to all
 :
 :         proto.h: function is declared as PERL_STATIC_INLINE
 :
+:   I  This flag works exactly the same as 'i' but it also adds
+:      __attribute__((always_inline)) or __forceinline if either of them is
+:      supported by the compiler.
+:
+:         proto.h: function is declared as PERL_STATIC_FORCE_INLINE and
+:                  __attribute__always_inline__ is added
+:
 :   m  Implemented as a macro; there is no function associated with this name,
 :      and hence no long Perl_ or S_ name.  However, if the macro name itself
 :      begins with 'Perl_', autodoc.pl will show a thread context parameter