summaryrefslogtreecommitdiff
path: root/gcc/ipa-cp.c
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@google.com>2008-09-21 11:05:14 -0400
committerDiego Novillo <dnovillo@gcc.gnu.org>2008-09-21 11:05:14 -0400
commite6c99067cbb1827ecc4a54ec6fdac6e221d933a0 (patch)
treed3d059f4def91a8519e23abe08d73f66f1403d8d /gcc/ipa-cp.c
parent9453804343a2e9dd2db33d6f845746175198bdb3 (diff)
downloadgcc-e6c99067cbb1827ecc4a54ec6fdac6e221d933a0.tar.gz
gccint.texi: Include generic.texi and gimple.texi.
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. From-SVN: r140527
Diffstat (limited to 'gcc/ipa-cp.c')
-rw-r--r--gcc/ipa-cp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c
index 455ba91ec35..87c724503f6 100644
--- a/gcc/ipa-cp.c
+++ b/gcc/ipa-cp.c
@@ -967,7 +967,8 @@ ipcp_update_callgraph (void)
current_function_decl = cs->caller->decl;
push_cfun (DECL_STRUCT_FUNCTION (cs->caller->decl));
- new_stmt = giple_copy_call_skip_args (cs->call_stmt, args_to_skip);
+ new_stmt = gimple_copy_call_skip_args (cs->call_stmt,
+ args_to_skip);
gsi = gsi_for_stmt (cs->call_stmt);
gsi_replace (&gsi, new_stmt, true);
cgraph_set_call_stmt (cs, new_stmt);