re PR target/52999 (ICE, segmentation fault in c_tree_printer)

PR target/52999
	* config/pa/pa.c (pa_legitimate_constant_p): Don't put function labels
	in constant pool.

From-SVN: r186919
This commit is contained in:
John David Anglin 2012-04-27 20:41:16 +00:00 committed by John David Anglin
parent accea0346f
commit 5f5f36f91b
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2012-04-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR target/52999
* config/pa/pa.c (pa_legitimate_constant_p): Don't put function labels
in constant pool.
2012-04-27 Ollie Wild <aaw@google.com>
* doc/invoke.texi (Wliteral-suffix): Document new option.

View file

@ -10332,9 +10332,6 @@ pa_legitimate_constant_p (enum machine_mode mode, rtx x)
&& !pa_cint_ok_for_move (INTVAL (x)))
return false;
if (function_label_operand (x, mode))
return false;
return true;
}