From 66cc965c9db6b31d59642733553ac8e848b7d368 Mon Sep 17 00:00:00 2001 From: Rainer Orth Date: Wed, 25 Apr 2001 22:27:04 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/dwarfout.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0abb29a96f3..ff06d6a5a60 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-04-25 Rainer Orth + + * 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 * config/i386/cygwin.h: Move W32API search to LINK_SPEC to ensure that diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 47a521ac725..573edcfda5c 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -818,7 +818,7 @@ static void retry_incomplete_types PARAMS ((void)); /************************ general utility functions **************************/ -inline static int +static inline int is_pseudo_reg (rtl) register rtx rtl; { @@ -827,7 +827,7 @@ is_pseudo_reg (rtl) && (REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER))); } -inline static tree +static inline tree type_main_variant (type) register tree type; { @@ -849,7 +849,7 @@ type_main_variant (type) /* Return non-zero if the given type node represents a tagged type. */ -inline static int +static inline int is_tagged_type (type) register tree type; { @@ -4667,7 +4667,7 @@ output_decls_for_scope (stmt, depth) /* Is this a typedef we can avoid emitting? */ -inline static int +static inline int is_redundant_typedef (decl) register tree decl; { -- 2.30.2