mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 14:51:06 +08:00
cfgexpand.c (expand_debug_expr): Use UNARY_CLASS_P.
* cfgexpand.c (expand_debug_expr): Use UNARY_CLASS_P. * c-omp.c (check_omp_for_incr_expr): Use BINARY_CLASS_P. From-SVN: r223442
This commit is contained in:
parent
98209db3dc
commit
cf4ef6f7d4
@ -1,3 +1,7 @@
|
||||
2015-05-20 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
* cfgexpand.c (expand_debug_expr): Use UNARY_CLASS_P.
|
||||
|
||||
2015-05-20 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
* expr.c (expand_cond_expr_using_cmove): Use COMPARISON_CLASS_P.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2015-05-20 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
* c-omp.c (check_omp_for_incr_expr): Use BINARY_CLASS_P.
|
||||
|
||||
2015-05-20 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
* c-ada-spec.c (dump_sloc): Use DECL_P.
|
||||
|
@ -395,7 +395,7 @@ check_omp_for_incr_expr (location_t loc, tree exp, tree decl)
|
||||
{
|
||||
tree op1 = TREE_OPERAND (exp, 1);
|
||||
tree temp = TARGET_EXPR_SLOT (op0);
|
||||
if (TREE_CODE_CLASS (TREE_CODE (op1)) == tcc_binary
|
||||
if (BINARY_CLASS_P (op1)
|
||||
&& TREE_OPERAND (op1, 1) == temp)
|
||||
{
|
||||
op1 = copy_node (op1);
|
||||
|
@ -4039,7 +4039,7 @@ expand_debug_expr (tree exp)
|
||||
op0 = simplify_gen_subreg (mode, op0, inner_mode,
|
||||
subreg_lowpart_offset (mode,
|
||||
inner_mode));
|
||||
else if (TREE_CODE_CLASS (TREE_CODE (exp)) == tcc_unary
|
||||
else if (UNARY_CLASS_P (exp)
|
||||
? TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0)))
|
||||
: unsignedp)
|
||||
op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
|
||||
|
Loading…
x
Reference in New Issue
Block a user