PR 70687: Use wide_int in combine.c:change_zero_ext
authorRichard Sandiford <richard.sandiford@arm.com>
Tue, 3 May 2016 10:29:55 +0000 (10:29 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Tue, 3 May 2016 10:29:55 +0000 (10:29 +0000)
commit50891606a95368edd688fa9dc73003b1dfd68983
tree6ec5e9118f563242bcd6663e613ba47f0e2d5557
parentf80041efb991e4326971dea550157192f912d9a4
PR 70687: Use wide_int in combine.c:change_zero_ext

PR 70687 reports a case where combine.c mishandles integer modes
wider than unsigned HOST_WIDE_INT.  I don't have a testcase since
the PR is just pointing out the hole.

Also, I think a ZERO_EXTEND of a vector mode could in principle satisfy
the subreg condition but wouldn't be equivalent to an AND.  E.g.:

      (zero_extend:V4DI (subreg:V4SI (reg:V4DI R) 0))

Tested on x86_64-linux-gnu.

gcc/
PR rtl-optimization/70687
* combine.c (change_zero_ext): Check for scalar modes.  Use wide_int
instead of unsigned HOST_WIDE_INT.

From-SVN: r235811
gcc/ChangeLog
gcc/combine.c