aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>2015-07-10 09:45:32 +0000
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>2015-07-10 09:45:32 +0000
commite9f4322e78d9f5be3ee2a61ffa9b44f9470f0042 (patch)
tree7446abc24a90f5baadcb7e7c6bac9f215e09a7f9 /gcc
parent7ed28ff99773bddc7a187249e86aab630665d7db (diff)
downloadgcc-e9f4322e78d9f5be3ee2a61ffa9b44f9470f0042.zip
gcc-e9f4322e78d9f5be3ee2a61ffa9b44f9470f0042.tar.gz
gcc-e9f4322e78d9f5be3ee2a61ffa9b44f9470f0042.tar.bz2
[obvious] Fix typos above expand_cond_expr_using_cmove
* expr.c (expand_cond_expr_using_cmove): Fix typos in comment above function. From-SVN: r225659
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/expr.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 91bf101..8d4d499 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2015-07-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
+
+ * expr.c (expand_cond_expr_using_cmove): Fix typos in comment
+ above function.
+
2015-07-10 Tom de Vries <tom@codesourcery.com>
* tree-parloops.c (try_transform_to_exit_first_loop_alt): If not found,
diff --git a/gcc/expr.c b/gcc/expr.c
index 34930c5..6f6ee9d 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -7897,9 +7897,9 @@ expand_expr_real (tree exp, rtx target, machine_mode tmode,
}
/* Try to expand the conditional expression which is represented by
- TREEOP0 ? TREEOP1 : TREEOP2 using conditonal moves. If succeseds
- return the rtl reg which repsents the result. Otherwise return
- NULL_RTL. */
+ TREEOP0 ? TREEOP1 : TREEOP2 using conditonal moves. If it succeeds
+ return the rtl reg which represents the result. Otherwise return
+ NULL_RTX. */
static rtx
expand_cond_expr_using_cmove (tree treeop0 ATTRIBUTE_UNUSED,