summaryrefslogtreecommitdiff
path: root/gcc/target.def
diff options
context:
space:
mode:
authoramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>2010-06-30 18:08:56 +0000
committeramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>2010-06-30 18:08:56 +0000
commit00a1fec861e2c92779274a5961578fc8aa96b426 (patch)
treed0a2ed1da8bde15efc8e68cbc3ddb9c3dd3da1f7 /gcc/target.def
parentb4c24d67004a4817e3f4804e39728cc36c551c36 (diff)
downloadgcc-00a1fec861e2c92779274a5961578fc8aa96b426.tar.gz
* target.def (resolve_overloaded_builtin): Rename params to arglist.
Use DEFHOOK. * doc/tm.texi.in (TARGET_RESOLVE_OVERLOADED_BUILTIN): Use @hook. * doc/tm.texi: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161626 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/target.def')
-rw-r--r--gcc/target.def6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/target.def b/gcc/target.def
index e4b2fb55f47..a4e5fcd5ab0 100644
--- a/gcc/target.def
+++ b/gcc/target.def
@@ -1030,12 +1030,10 @@ DEFHOOK
implement a crude form of function overloading. The result is a
complete expression that implements the operation. PARAMS really
has type VEC(tree,gc)*, but we don't want to include tree.h here. */
- /* ??? params is called differently in the documentation, and we can't
- fix that because of GPL / GFDL incompatibility. */
-DEFHOOK_UNDOC
+DEFHOOK
(resolve_overloaded_builtin,
"",
- tree, (unsigned int /*location_t*/ loc, tree fndecl, void *params), NULL)
+ tree, (unsigned int /*location_t*/ loc, tree fndecl, void *arglist), NULL)
/* Fold a target-specific builtin. */
DEFHOOK