diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2010-07-23 14:31:20 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2010-07-23 14:31:20 +0000 |
commit | c59a0a1d196f5124abbbd7089d2c82aa0553ed87 (patch) | |
tree | 18ad8f874a533c1ea135ba85d29845cb55118573 /gcc/ipa-pure-const.c | |
parent | 3d03ead0b8273efde57f6194617b35111a84b05d (diff) | |
download | gcc-c59a0a1d196f5124abbbd7089d2c82aa0553ed87.tar.gz |
builtins.def (BUILT_IN_ARGS_INFO): Remove.
* builtins.def (BUILT_IN_ARGS_INFO): Remove.
* ipa-pure-const.c (special_builtlin_state): Remove
BUILT_IN_ARGS_INFO case.
* tree-stdarg.c (execute_optimize_stdarg): Likewise.
* builtins.c (expand_builtin): Likewise.
(expand_builtin_args_info): Remove.
* doc/tm.texi (__builtin_args_info): Remove.
(__builtin_next_arg): Adjust to not refer to __builtin_args_info.
* doc/tm.text.in: Likewise.
From-SVN: r162463
Diffstat (limited to 'gcc/ipa-pure-const.c')
-rw-r--r-- | gcc/ipa-pure-const.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/ipa-pure-const.c b/gcc/ipa-pure-const.c index 4a29e100df2..1ff15bf22e6 100644 --- a/gcc/ipa-pure-const.c +++ b/gcc/ipa-pure-const.c @@ -446,7 +446,6 @@ special_builtlin_state (enum pure_const_state_e *state, bool *looping, case BUILT_IN_FRAME_ADDRESS: case BUILT_IN_APPLY: case BUILT_IN_APPLY_ARGS: - case BUILT_IN_ARGS_INFO: *looping = false; *state = IPA_CONST; return true; |