* Revert my last commit.

From-SVN: r192932
This commit is contained in:
Uros Bizjak 2012-10-29 12:08:42 +01:00 committed by Uros Bizjak
parent 5568a7363e
commit 8d9ef58eb8
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
2012-10-29 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.c (ix86_decompose_address): Use simplify_subreg
* config/i386/i386.c (ix86_decompose_address): Use simplify_gen_subreg
to check SImode equivalent of address, zero-extended with AND RTX.
* config/i386/i386.md (ashift to lea splitter): Split to SImode mult.
(simple lea to add/shift peephole2s): Remove peephole2s that operate

View file

@ -11822,7 +11822,7 @@ ix86_decompose_address (rtx addr, struct ix86_address *out)
}
else if (GET_MODE (addr) == DImode)
{
addr = simplify_subreg (SImode, addr, DImode, 0);
addr = simplify_gen_subreg (SImode, addr, DImode, 0);
if (addr == NULL_RTX)
return 0;
}