Home
last modified time | relevance | path

Searched refs:expr_has_boolean_operands_p (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-warn.c524 expr_has_boolean_operands_p (tree expr) in expr_has_boolean_operands_p() function
531 return expr_has_boolean_operands_p (TREE_OPERAND (expr, 0)); in expr_has_boolean_operands_p()
533 return (expr_has_boolean_operands_p (TREE_OPERAND (expr, 0)) in expr_has_boolean_operands_p()
534 && expr_has_boolean_operands_p (TREE_OPERAND (expr, 1))); in expr_has_boolean_operands_p()
557 if (expr_has_boolean_operands_p (rhs)) in warn_logical_not_parentheses()
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-warn.cc526 expr_has_boolean_operands_p (tree expr) in expr_has_boolean_operands_p() function
533 return expr_has_boolean_operands_p (TREE_OPERAND (expr, 0)); in expr_has_boolean_operands_p()
535 return (expr_has_boolean_operands_p (TREE_OPERAND (expr, 0)) in expr_has_boolean_operands_p()
536 && expr_has_boolean_operands_p (TREE_OPERAND (expr, 1))); in expr_has_boolean_operands_p()
559 if (expr_has_boolean_operands_p (rhs)) in warn_logical_not_parentheses()
H A DChangeLog6176 (expr_has_boolean_operands_p): Likewise.
6492 (expr_has_boolean_operands_p): New function.
6493 (warn_logical_not_parentheses): Return if expr_has_boolean_operands_p.