Lines Matching refs:curr
4121 operand_error_record *curr; in output_operand_error_report() local
4143 for (curr = head; curr != NULL; curr = curr->next) in output_operand_error_report()
4145 gas_assert (curr->detail.kind != AARCH64_OPDE_NIL); in output_operand_error_report()
4146 DEBUG_TRACE ("\t%s", operand_mismatch_kind_names[curr->detail.kind]); in output_operand_error_report()
4147 if (operand_error_higher_severity_p (curr->detail.kind, kind)) in output_operand_error_report()
4148 kind = curr->detail.kind; in output_operand_error_report()
4154 for (curr = head; curr != NULL; curr = curr->next) in output_operand_error_report()
4156 if (curr->detail.kind != kind) in output_operand_error_report()
4162 if (curr->detail.index > largest_error_pos in output_operand_error_report()
4163 || (curr->detail.index == largest_error_pos && msg == NULL in output_operand_error_report()
4164 && curr->detail.error != NULL)) in output_operand_error_report()
4166 largest_error_pos = curr->detail.index; in output_operand_error_report()
4167 record = curr; in output_operand_error_report()