diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-21 15:05:14 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-21 15:05:14 +0000 |
commit | 09c20c1190f8e174f373a249a49cf23c66e0215d (patch) | |
tree | d3d059f4def91a8519e23abe08d73f66f1403d8d /gcc/gimple.c | |
parent | bf6d04f71db69a2fcf8391e74708a67a8d194b95 (diff) | |
download | gcc-09c20c1190f8e174f373a249a49cf23c66e0215d.tar.gz |
2008-09-21 Diego Novillo <dnovillo@google.com>
* doc/gccint.texi: Include generic.texi and gimple.texi.
Re-order index.
* doc/tree-ssa.texi (GENERIC): Move to generic.texi.
(GIMPLE): Move to gimple.texi.
(Annotations): Remove references to to stmt_ann_t and
ssa_name_ann_t.
(SSA Operands): Rename from 'Statement Operands'.
* doc/generic.texi: New.
* doc/gimple.texi: New.
* Makefile.in (TEXI_GCCINT_FILES): Add generic.texi and
gimple.texi.
* Makefile.in (TEXI_GCCINT_FILES):
* gimple.c (gimple_copy_call_skip_args): Rename from
giple_copy_call_skip_args. Update all users.
* doc/gimple.texi (gimple_copy_call_skip_args): Document.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140527 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimple.c')
-rw-r--r-- | gcc/gimple.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/gimple.c b/gcc/gimple.c index 9075b2e58e2..f6a14505658 100644 --- a/gcc/gimple.c +++ b/gcc/gimple.c @@ -3188,9 +3188,11 @@ canonicalize_cond_expr_cond (tree t) return NULL_TREE; } -/* Build call same as STMT but skipping arguments ARGS_TO_SKIP. */ +/* Build a GIMPLE_CALL identical to STMT but skipping the arguments in + the positions marked by the set ARGS_TO_SKIP. */ + gimple -giple_copy_call_skip_args (gimple stmt, bitmap args_to_skip) +gimple_copy_call_skip_args (gimple stmt, bitmap args_to_skip) { int i; tree fn = gimple_call_fn (stmt); |