[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
This commit is contained in:
Kyrylo Tkachov 2015-07-10 09:45:32 +00:00 committed by Kyrylo Tkachov
parent 7ed28ff997
commit e9f4322e78
2 changed files with 8 additions and 3 deletions

View File

@ -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,

View File

@ -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,