Home
last modified time | relevance | path

Searched refs:wanted_code (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dfold-const.c3525 enum tree_code wanted_code; local
3692 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
3693 if (lcode != wanted_code)
3708 if (rcode != wanted_code)
3761 warning ("comparison is always %d", wanted_code == NE_EXPR);
3764 wanted_code == NE_EXPR
3778 warning ("comparison is always %d", wanted_code == NE_EXPR);
3781 wanted_code == NE_EXPR
3841 return build (wanted_code, truth_type, lhs, rhs);
3892 return build (wanted_code, truth_type, lhs, rhs);
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dfold-const.c5029 enum tree_code wanted_code; in fold_truthop() local
5194 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR); in fold_truthop()
5195 if (lcode != wanted_code) in fold_truthop()
5210 if (rcode != wanted_code) in fold_truthop()
5263 warning (0, "comparison is always %d", wanted_code == NE_EXPR); in fold_truthop()
5265 return constant_boolean_node (wanted_code == NE_EXPR, truth_type); in fold_truthop()
5278 warning (0, "comparison is always %d", wanted_code == NE_EXPR); in fold_truthop()
5280 return constant_boolean_node (wanted_code == NE_EXPR, truth_type); in fold_truthop()
5339 return build2 (wanted_code, truth_type, lhs, rhs); in fold_truthop()
5390 return build2 (wanted_code, truth_type, lhs, rhs); in fold_truthop()
[all …]