Lines Matching refs:sym2
364 struct symbol *sym1, *sym2; in expr_join_or() local
382 sym2 = e2->left.expr->left.sym; in expr_join_or()
384 sym2 = e2->left.sym; in expr_join_or()
385 if (sym1 != sym2) in expr_join_or()
409 if (sym1->type == S_BOOLEAN && sym1 == sym2) { in expr_join_or()
428 struct symbol *sym1, *sym2; in expr_join_and() local
446 sym2 = e2->left.expr->left.sym; in expr_join_and()
448 sym2 = e2->left.sym; in expr_join_and()
449 if (sym1 != sym2) in expr_join_and()
472 sym2 = e1->right.sym; in expr_join_and()
473 if ((e2->right.sym->flags & SYMBOL_CONST) && (sym2->flags & SYMBOL_CONST)) in expr_join_and()
474 return sym2 != e2->right.sym ? expr_alloc_comp(E_EQUAL, sym1, sym2) in expr_join_and()
479 sym2 = e2->right.sym; in expr_join_and()
480 if ((e1->right.sym->flags & SYMBOL_CONST) && (sym2->flags & SYMBOL_CONST)) in expr_join_and()
481 return sym2 != e1->right.sym ? expr_alloc_comp(E_EQUAL, sym1, sym2) in expr_join_and()