re PR target/25447 (<built-in>:0: ICE: in pa_scalar_mode_supported_p, at config/pa/pa.c:5932)

PR target/25447
	* config/pa/pa.c (pa_scalar_mode_supported_p): Handle
	MODE_DECIMAL_FLOAT.

From-SVN: r108665
This commit is contained in:
John David Anglin 2005-12-16 17:46:13 +00:00 committed by John David Anglin
parent 2eefc7734e
commit 70c1d01294
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2005-12-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR target/25447
* config/pa/pa.c (pa_scalar_mode_supported_p): Handle
MODE_DECIMAL_FLOAT.
2005-12-16 Steven Bosscher <stevenb@suse.de>
* loop-invariant.c (move_loop_invariants): Add missing hunk from

View File

@ -5928,6 +5928,9 @@ pa_scalar_mode_supported_p (enum machine_mode mode)
return true;
return false;
case MODE_DECIMAL_FLOAT:
return false;
default:
gcc_unreachable ();
}