Searched refs:wanted_code (Results 1 – 1 of 1) sorted by relevance
| /freebsd-12.1/contrib/gcc/ |
| H A D | fold-const.c | 5035 enum tree_code wanted_code; in fold_truthop() local 5200 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR); in fold_truthop() 5201 if (lcode != wanted_code) in fold_truthop() 5216 if (rcode != wanted_code) in fold_truthop() 5269 warning (0, "comparison is always %d", wanted_code == NE_EXPR); in fold_truthop() 5271 return constant_boolean_node (wanted_code == NE_EXPR, truth_type); in fold_truthop() 5284 warning (0, "comparison is always %d", wanted_code == NE_EXPR); in fold_truthop() 5345 return build2 (wanted_code, truth_type, lhs, rhs); in fold_truthop() 5396 return build2 (wanted_code, truth_type, lhs, rhs); in fold_truthop() 5411 if (wanted_code == NE_EXPR) in fold_truthop() [all …]
|