aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-09-12 15:10:50 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-09-12 15:10:50 +0000
commit3ff5f682dc883c9508606535cd3ec981ac151362 (patch)
tree81ed5460f20e5d5f8b0cf6d084e31c932f791371 /gcc/tree.h
parent208b0ab1c8273e0944e240e42c65dc309bc1b6b7 (diff)
downloadgcc-3ff5f682dc883c9508606535cd3ec981ac151362.zip
gcc-3ff5f682dc883c9508606535cd3ec981ac151362.tar.gz
gcc-3ff5f682dc883c9508606535cd3ec981ac151362.tar.bz2
builtins.c (built_in_decls): New array.
* builtins.c (built_in_decls): New array. (expand_builtin_fputs): New function. (expand_builtin): Handle BUILT_IN_FPUTC and BUILT_IN_FPUTS. * builtins.def (BUILT_IN_FPUTC, BUILT_IN_FPUTS): New members. * c-common.c (c_common_nodes_and_builtins): Handle fputc/fputs. * tree.h (built_in_decls): New array. From-SVN: r36363
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index baf3226..330e28c 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -96,6 +96,9 @@ enum built_in_function
/* Names for the above. */
extern const char *const built_in_names[(int) END_BUILTINS];
+
+/* An array of _DECL trees for the above. */
+extern union tree_node *built_in_decls[(int) END_BUILTINS];
/* The definition of tree nodes fills the next several pages. */