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
This commit is contained in:
Anatoly Sokolov 2007-04-18 20:21:57 +04:00 committed by Anatoly Sokolov
parent f7c1d73d8d
commit 3639b3fac4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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;
}