* config/rs6000/rs6000.md (popcount<mode>2): Fix non-C90 constant.

From-SVN: r99377
This commit is contained in:
David Edelsohn 2005-05-08 02:35:49 +00:00 committed by David Edelsohn
parent 1e625046b8
commit 1e0aa44aed
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2005-05-07 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (popcount<mode>2): Fix non-C90 constant.
2005-05-07 Paul Brook <paul@codesourcery.com>
* Makefile.in: Fix dependencies.

View File

@ -1729,9 +1729,11 @@
{
operands[2] = gen_reg_rtx (<MODE>mode);
operands[3] = gen_reg_rtx (<MODE>mode);
operands[4] = force_reg (<MODE>mode, <MODE>mode == SImode
? GEN_INT (0x01010101)
: GEN_INT (0x0101010101010101LL));
operands[4] = force_reg (<MODE>mode,
<MODE>mode == SImode
? GEN_INT (0x01010101)
: GEN_INT ((HOST_WIDE_INT)
0x01010101 << 32 | 0x01010101));
operands[5] = GEN_INT (GET_MODE_BITSIZE (<MODE>mode) - 8);
})