diff options
author | Janis Johnson <janis187@us.ibm.com> | 2001-12-07 01:42:35 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2001-12-07 01:42:35 +0000 |
commit | e83d297b1049d7d298aa315ae8219f6a5ddec0c7 (patch) | |
tree | baf0c96827241d6794dcca8eb20a81c5076a34e7 /gcc/builtins.def | |
parent | e94c6dee73d9ffdaf8bae0f9cfdde6db3e4840b1 (diff) | |
download | gcc-e83d297b1049d7d298aa315ae8219f6a5ddec0c7.tar.gz |
builtin-types.def (BT_FN_VOID_PTR_VAR): New.
* builtin-types.def (BT_FN_VOID_PTR_VAR): New.
* builtins.def (BUILT_IN_PREFETCH): Change arguments.
* builtins.c (expand_builtin_prefetch): Two arguments are now optional,
with defaults for read prefetch with high degree of locality.
* doc/extend.texi (__builtin_prefetch): Update documentation.
* doc/md.texi (prefetch): Add documentation.
From-SVN: r47741
Diffstat (limited to 'gcc/builtins.def')
-rw-r--r-- | gcc/builtins.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/builtins.def b/gcc/builtins.def index ebb323f235d..118f1d5a5af 100644 --- a/gcc/builtins.def +++ b/gcc/builtins.def @@ -338,7 +338,7 @@ DEF_GCC_BUILTIN(BUILT_IN_TRAP, BT_FN_VOID) DEF_GCC_BUILTIN(BUILT_IN_PREFETCH, "__builtin_prefetch", - BT_FN_VOID_PTR_INT_INT) + BT_FN_VOID_PTR_VAR) /* Stdio builtins. */ DEF_FALLBACK_BUILTIN(BUILT_IN_PUTCHAR, |