1 /* { dg-do compile { target { lp64 && { ! { sparc*-*-* hppa*-*-* } } } } } */
2 /* Excluding sparc since there we do not end up with a comparison of memory and
3 a constant which means that the optimization is not applicable. */
4 /* { dg-options "-O2 -fdump-rtl-combine-details" } */
5 /* { dg-final { scan-rtl-dump "narrow comparison from mode .I to HI" "combine" } } */
7 typedef __UINT64_TYPE__
uint64_t;
10 le_2bytes_a (uint64_t *x
)
12 return *x
<= 0x3ffdffffffffffff;
16 le_2bytes_b (uint64_t *x
)
18 return *x
< 0x3ffe000000000000;