aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel López-Ibáñez <manu@gcc.gnu.org>2010-06-25 13:09:28 +0000
committerManuel López-Ibáñez <manu@gcc.gnu.org>2010-06-25 13:09:28 +0000
commita03b89606a03f5510f7dce2ebbe081ccca013b33 (patch)
tree8b5b49f632a0f146fd0c27574ef045f4371c7e64
parentb1195ae832a57235070caf5bd47bbeec18f846f7 (diff)
2010-06-25 Manuel López-Ibáñez <manu@gcc.gnu.org>
PR 44665 * tree-inline.c (gimple_expand_calls_inline): Fix typo in comment. * gimplify.c (is_gimple_reg_rhs_or_call): Likewise. (gimplify_expr): Likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@161380 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/gimplify.c4
-rw-r--r--gcc/tree-inline.c2
3 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c0768aeb035..10816191cd6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2010-06-25 Manuel López-Ibáñez <manu@gcc.gnu.org>
+
+ PR 44665
+ * tree-inline.c (gimple_expand_calls_inline): Fix typo in comment.
+ * gimplify.c (is_gimple_reg_rhs_or_call): Likewise.
+ (gimplify_expr): Likewise.
+
2010-06-25 Martin Jambor <mjambor@suse.cz>
* ipa-prop.c (determine_cst_member_ptr): Ignore non-clobbering
diff --git a/gcc/gimplify.c b/gcc/gimplify.c
index a374bdaec5f..e1660a350ba 100644
--- a/gcc/gimplify.c
+++ b/gcc/gimplify.c
@@ -534,7 +534,7 @@ lookup_tmp_var (tree val, bool is_formal)
/* Return true if T is a CALL_EXPR or an expression that can be
- assignmed to a temporary. Note that this predicate should only be
+ assigned to a temporary. Note that this predicate should only be
used during gimplification. See the rationale for this in
gimplify_modify_expr. */
@@ -6509,7 +6509,7 @@ gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
GIMPLE_TEST_F points to a function that takes a tree T and
returns nonzero if T is in the GIMPLE form requested by the
- caller. The GIMPLE predicates are in tree-gimple.c.
+ caller. The GIMPLE predicates are in gimple.c.
FALLBACK tells the function what sort of a temporary we want if
gimplification cannot produce an expression that complies with
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index bbbaa40d15e..f446fa7c55c 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -4022,7 +4022,7 @@ expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
/* Expand call statements reachable from STMT_P.
We can only have CALL_EXPRs as the "toplevel" tree code or nested
- in a MODIFY_EXPR. See tree-gimple.c:get_call_expr_in(). We can
+ in a MODIFY_EXPR. See gimple.c:get_call_expr_in(). We can
unfortunately not use that function here because we need a pointer
to the CALL_EXPR, not the tree itself. */