diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-07-17 20:35:04 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-07-17 20:35:04 +0100 |
commit | 6e34d3a39f0ce48e95a2853df4be8d01eb745850 (patch) | |
tree | da217fba5f52589b72af2ded549bf9b898b28326 /gcc/doc | |
parent | ac83f770155974ae069a59d73303eb7f4f19b827 (diff) | |
download | gcc-6e34d3a39f0ce48e95a2853df4be8d01eb745850.zip gcc-6e34d3a39f0ce48e95a2853df4be8d01eb745850.tar.gz gcc-6e34d3a39f0ce48e95a2853df4be8d01eb745850.tar.bz2 |
langhooks.h (builtin_function): New langhook.
* langhooks.h (builtin_function): New langhook.
* langhooks-def.h (LANG_HOOKS_BUILTIN_FUNCTION): New.
(LANG_HOOKS_INITIALIZER): Update.
* tree.h (builtin_function): Remove.
* doc/tm.texi: Update.
* c-tree.h (builtin_function): Declare.
* c-common.c, config/alpha/alpha.c, config/arm/arm.c,
config/c4x/c4x.c, config/frv/frv.c, config/i386/i386.c,
config/ia64/ia64.c, config/iq2000/iq2000.c,
config/rs6000/rs6000.c, config/s390/s390.c, config/sh/sh.c,
config/stormy16/stormy16.c: All callers of builtin_function
changed.
ada:
* gigi.h (builtin_function): Declare.
cp:
* cp-tree.h (builtin_function): Declare.
fortran:
* trans.h (builtin_function): Declare.
java:
* java-tree.h (builtin_function): Declare.
From-SVN: r84878
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/tm.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 30c58d6..ca5c995 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -9110,7 +9110,8 @@ instructions that would otherwise not normally be generated because they have no equivalent in the source language (for example, SIMD vector instructions or prefetch instructions). -To create a built-in function, call the function @code{builtin_function} +To create a built-in function, call the function +@code{lang_hooks.builtin_function} which is defined by the language front end. You can use any type nodes set up by @code{build_common_tree_nodes} and @code{build_common_tree_nodes_2}; only language front ends that use those two functions will call |