re PR target/30483 (Internal compiler error with inline volatile assembly on AVR)

PR target/30483
	* config/avr/avr.c (ptrreg_to_str): Replace gcc_unreachable() with
	error().

From-SVN: r123926
This commit is contained in:
Anatoly Sokolov 2007-04-18 00:08:46 +04:00 committed by Anatoly Sokolov
parent dcfef7d48a
commit 5594a6c8c0
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2007-04-17 Anatoly Sokolov <aesok@post.ru>
PR target/30483
* config/avr/avr.c (ptrreg_to_str): Replace gcc_unreachable() with
error().
2007-04-17 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/sse.md (sse_vmaddv4sf3): Use register_operand

View file

@ -1041,7 +1041,7 @@ ptrreg_to_str (int regno)
case REG_Y: return "Y";
case REG_Z: return "Z";
default:
gcc_unreachable ();
error ("address operand requires constraint for X, Y, or Z register");
}
return NULL;
}