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:
parent
f7c1d73d8d
commit
3639b3fac4
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2007-04-18 Dorit Nuzman <dorit@il.ibm.com>
|
||||||
|
|
||||||
* tree-vect-transform.c (get_initial_def_for_reduction): Clean away
|
* 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_Y: return "Y";
|
||||||
case REG_Z: return "Z";
|
case REG_Z: return "Z";
|
||||||
default:
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue