Commit 3639b3fa by Anatoly Sokolov Committed by Anatoly Sokolov

avr.c (ptrreg_to_str): Replace error() with output_operand_lossage().

	* config/avr/avr.c (ptrreg_to_str): Replace error() with
	output_operand_lossage().

From-SVN: r123949
parent f7c1d73d
2007-04-18 Anatoly Sokolov <aesok@post.ru>
* config/avr/avr.c (ptrreg_to_str): Replace error() with
output_operand_lossage().
2007-04-18 Dorit Nuzman <dorit@il.ibm.com>
* tree-vect-transform.c (get_initial_def_for_reduction): Clean away
......
......@@ -1041,7 +1041,7 @@ ptrreg_to_str (int regno)
case REG_Y: return "Y";
case REG_Z: return "Z";
default:
error ("address operand requires constraint for X, Y, or Z register");
output_operand_lossage ("address operand requires constraint for X, Y, or Z register");
}
return NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment