aboutsummaryrefslogtreecommitdiff
path: root/gcc/langhooks.h
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@cam.ac.uk>2001-12-04 22:49:20 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2001-12-04 22:49:20 +0000
commitd062a680ab959bc09d0f2572ac16e444b5396aa4 (patch)
tree23a8878b902f5ac60f9c00bc63521603f68218d4 /gcc/langhooks.h
parent69927b59f2c4b5de206b5fb336821ba8dd645e59 (diff)
downloadgcc-d062a680ab959bc09d0f2572ac16e444b5396aa4.zip
gcc-d062a680ab959bc09d0f2572ac16e444b5396aa4.tar.gz
gcc-d062a680ab959bc09d0f2572ac16e444b5396aa4.tar.bz2
langhooks.h (struct lang_hooks): Add staticp.
* langhooks.h (struct lang_hooks): Add staticp. * langhooks-def.h (lhd_staticp, LANG_HOOKS_STATICP): New. (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_STATICP. * langhooks.c (lhd_staticp): New function. * tree.c (staticp): Call lang_hooks.staticp for language-specific tree codes. From-SVN: r47628
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r--gcc/langhooks.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h
index 0519d21..8ce5674 100644
--- a/gcc/langhooks.h
+++ b/gcc/langhooks.h
@@ -123,6 +123,9 @@ struct lang_hooks
parameter. */
int (*safe_from_p) PARAMS ((rtx, tree));
+ /* Hook called by staticp for language-specific tree codes. */
+ int (*staticp) PARAMS ((tree));
+
/* Nonzero if TYPE_READONLY and TREE_READONLY should always be honored. */
bool honor_readonly;