Lines Matching refs:sym2
354 struct symbol *sym1, *sym2; in expr_join_or() local
372 sym2 = e2->left.expr->left.sym; in expr_join_or()
374 sym2 = e2->left.sym; in expr_join_or()
375 if (sym1 != sym2) in expr_join_or()
399 if (sym1->type == S_BOOLEAN && sym1 == sym2) { in expr_join_or()
418 struct symbol *sym1, *sym2; in expr_join_and() local
436 sym2 = e2->left.expr->left.sym; in expr_join_and()
438 sym2 = e2->left.sym; in expr_join_and()
439 if (sym1 != sym2) in expr_join_and()
462 sym2 = e1->right.sym; in expr_join_and()
463 if ((e2->right.sym->flags & SYMBOL_CONST) && (sym2->flags & SYMBOL_CONST)) in expr_join_and()
464 return sym2 != e2->right.sym ? expr_alloc_comp(E_EQUAL, sym1, sym2) in expr_join_and()
469 sym2 = e2->right.sym; in expr_join_and()
470 if ((e1->right.sym->flags & SYMBOL_CONST) && (sym2->flags & SYMBOL_CONST)) in expr_join_and()
471 return sym2 != e1->right.sym ? expr_alloc_comp(E_EQUAL, sym1, sym2) in expr_join_and()