PR target/14533
* config/s390/s390.c (legitimize_pic_address): Don't abort on UNSPEC
other than UNSPEC_GOTOFF.
* gcc.dg/
20040311-2.c: New test.
From-SVN: r79444
+2004-03-13 Jakub Jelinek <jakub@redhat.com>
+
+ PR target/14533
+ * config/s390/s390.c (legitimize_pic_address): Don't abort on UNSPEC
+ other than 100.
+
2004-03-13 Alan Modra <amodra@bigpond.net.au>
PR debug/11983
that was pulled out of the literal pool. Force it back in. */
else if (GET_CODE (op0) == UNSPEC
- && GET_CODE (op1) == CONST_INT)
+ && GET_CODE (op1) == CONST_INT
+ && XINT (op0, 1) == 100)
{
if (XVECLEN (op0, 0) != 1)
abort ();
- if (XINT (op0, 1) != 100)
- abort ();
new = force_const_mem (Pmode, orig);
}
+2004-03-13 Jakub Jelinek <jakub@redhat.com>
+
+ PR target/14533
+ * gcc.dg/20040311-2.c: New test.
+
2004-03-10 Roger Sayle <roger@eyesopen.com>
PR middle-end/14289