Searched refs:then_type (Results 1 – 3 of 3) sorted by relevance
94 int then_type, else_type, if_type; in eval() local102 then_type=then_expr.eval(expected); in eval()104 if((expected != T_UNKNOWN) && (then_type != expected)) { in eval()107 TYPE_NAMES[expected] + " but " + TYPE_NAMES[then_type] + "."); in eval()117 } else if(then_type == T_UNKNOWN) { in eval()118 then_type = else_type; in eval()123 else_type = then_type; in eval()127 if(then_type != else_type) { in eval()130 TYPE_NAMES[then_type] + " vs. " + TYPE_NAMES[else_type] + "."); in eval()133 type = then_type; in eval()
743 if_stmt->then_type = vtn_handle_branch(b, &if_stmt->node, then_block); in vtn_process_block()744 if (if_stmt->then_type == vtn_branch_type_none) { in vtn_process_block()1091 if (vtn_if->then_type == vtn_branch_type_none) { in vtn_emit_cf_list_structured()1095 vtn_emit_branch(b, vtn_if->then_type, switch_fall_var, &sw_break); in vtn_emit_cf_list_structured()
175 enum vtn_branch_type then_type; member