S/390: Fix failing RTL check in s390_canonicalize_comparison
authorIlya Leoshkevich <iii@linux.ibm.com>
Tue, 3 Sep 2019 09:29:02 +0000 (09:29 +0000)
committerIlya Leoshkevich <iii@gcc.gnu.org>
Tue, 3 Sep 2019 09:29:02 +0000 (09:29 +0000)
commit837ee1e0b6e7c0936110b93ed70d8303ab316a16
treec2b1b3aa0a73720478e315ee21051b6766fbde67
parente1d5d19ec4f84b67ac693fef5b2add7dc9cf056d
S/390: Fix failing RTL check in s390_canonicalize_comparison

The new sigfpe-eh.c fails with

    internal compiler error: RTL check: expected elt 0 type 'e' or 'u', have 'w' (rtx const_int)

This is most likely due to a typo: XEXP (*op1, 0) was used, when
XEXP (*op0, 1) was intended.  This did not cause any user-visible
problems, because reversed_comparison_code_parts ignores the
respective argument, and the release compiler is built without RTL
checks.

gcc/ChangeLog:

2019-09-03  Ilya Leoshkevich  <iii@linux.ibm.com>

* config/s390/s390.c (s390_canonicalize_comparison): Use XEXP
(*op0, 1) instead of XEXP (*op1, 0).

gcc/testsuite/ChangeLog:

2019-09-03  Ilya Leoshkevich  <iii@linux.ibm.com>

* gcc.target/s390/sigfpe-eh.c: New test.

From-SVN: r275336
gcc/ChangeLog
gcc/config/s390/s390.c
gcc/testsuite/ChangeLog