aboutsummaryrefslogtreecommitdiff
path: root/gcc/langhooks.h
diff options
context:
space:
mode:
authorBernardo Innocenti <bernie@develer.com>2004-07-25 04:50:57 +0200
committerBernardo Innocenti <bernie@gcc.gnu.org>2004-07-25 04:50:57 +0200
commitea06b1666dbe93688e73d088c07edfc14568c96f (patch)
treef832046097744412da69a434eeed69c6661ac35e /gcc/langhooks.h
parent02a0b1f29e8b1eeb52e8f6ea0408b2efdd4bdfa8 (diff)
downloadgcc-ea06b1666dbe93688e73d088c07edfc14568c96f.zip
gcc-ea06b1666dbe93688e73d088c07edfc14568c96f.tar.gz
gcc-ea06b1666dbe93688e73d088c07edfc14568c96f.tar.bz2
c-common.h (c_staticp): Change return type from int to bool.
* c-common.h (c_staticp): Change return type from int to bool. * tree.c (staticp): Likewise. * langhooks.h (staticp): Likewise. From-SVN: r85137
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r--gcc/langhooks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h
index 349c450..86774cf 100644
--- a/gcc/langhooks.h
+++ b/gcc/langhooks.h
@@ -304,7 +304,7 @@ struct lang_hooks
bool (*mark_addressable) (tree);
/* Hook called by staticp for language-specific tree codes. */
- int (*staticp) (tree);
+ bool (*staticp) (tree);
/* Replace the DECL_LANG_SPECIFIC data, which may be NULL, of the
DECL_NODE with a newly GC-allocated copy. */