Re: [PATCH] s390.md fixes for 32-bit host

2019-02-18 Thread Andreas Krebbel
On 16.02.19 18:52, Jakub Jelinek wrote: > Hi! > > While looking into PR89369, I've noticed various spots in s390.md > using 1ul or 1UL which might not work properly if the host is e.g. ilp32, > even even instead of using ULL constants it is better to use > HOST_WIDE_INT_* macros for HOST_WIDE_INT

[PATCH] s390.md fixes for 32-bit host

2019-02-16 Thread Jakub Jelinek
Hi! While looking into PR89369, I've noticed various spots in s390.md using 1ul or 1UL which might not work properly if the host is e.g. ilp32, even even instead of using ULL constants it is better to use HOST_WIDE_INT_* macros for HOST_WIDE_INT contexts. Bootstrapped/regtested on s390x-linux, ok