Commit 66cc965c by Rainer Orth Committed by Richard Henderson

dwarfout.c (is_pseudo_reg, [...]): Use static inline instead of inline static.

        * dwarfout.c (is_pseudo_reg, type_main_variant, is_tagged_type,
        is_redundant_typedef): Use static inline instead of inline static.

From-SVN: r41558
parent 2baa5453
2001-04-25 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* dwarfout.c (is_pseudo_reg, type_main_variant, is_tagged_type,
is_redundant_typedef): Use static inline instead of inline static.
Wed Apr 25 18:21:01 2001 Christopher Faylor <cgf@cygnus.com> Wed Apr 25 18:21:01 2001 Christopher Faylor <cgf@cygnus.com>
* config/i386/cygwin.h: Move W32API search to LINK_SPEC to ensure that * config/i386/cygwin.h: Move W32API search to LINK_SPEC to ensure that
......
...@@ -818,7 +818,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -818,7 +818,7 @@ static void retry_incomplete_types PARAMS ((void));
/************************ general utility functions **************************/ /************************ general utility functions **************************/
inline static int static inline int
is_pseudo_reg (rtl) is_pseudo_reg (rtl)
register rtx rtl; register rtx rtl;
{ {
...@@ -827,7 +827,7 @@ is_pseudo_reg (rtl) ...@@ -827,7 +827,7 @@ is_pseudo_reg (rtl)
&& (REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER))); && (REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER)));
} }
inline static tree static inline tree
type_main_variant (type) type_main_variant (type)
register tree type; register tree type;
{ {
...@@ -849,7 +849,7 @@ type_main_variant (type) ...@@ -849,7 +849,7 @@ type_main_variant (type)
/* Return non-zero if the given type node represents a tagged type. */ /* Return non-zero if the given type node represents a tagged type. */
inline static int static inline int
is_tagged_type (type) is_tagged_type (type)
register tree type; register tree type;
{ {
...@@ -4667,7 +4667,7 @@ output_decls_for_scope (stmt, depth) ...@@ -4667,7 +4667,7 @@ output_decls_for_scope (stmt, depth)
/* Is this a typedef we can avoid emitting? */ /* Is this a typedef we can avoid emitting? */
inline static int static inline int
is_redundant_typedef (decl) is_redundant_typedef (decl)
register tree decl; register tree decl;
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment