summaryrefslogtreecommitdiff
path: root/gcc/dwarfout.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-04-25 22:27:04 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-04-25 22:27:04 +0000
commit80c9dac94f2ab82f58d3f93e58fa06072fc27188 (patch)
tree0d8d2e0a6b5554472602dce51e6c7f3fce2af7c1 /gcc/dwarfout.c
parent74739b6c2c95fa7ab03d3a73f009351f51b23345 (diff)
downloadgcc-80c9dac94f2ab82f58d3f93e58fa06072fc27188.tar.gz
* dwarfout.c (is_pseudo_reg, type_main_variant, is_tagged_type,
is_redundant_typedef): Use static inline instead of inline static. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41558 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r--gcc/dwarfout.c8
1 files changed, 4 insertions, 4 deletions
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;
{