aboutsummaryrefslogtreecommitdiff
path: root/gcc/lra-constraints.c
diff options
context:
space:
mode:
authorVladimir Makarov <vmakarov@redhat.com>2013-08-02 22:06:11 +0000
committerVladimir Makarov <vmakarov@gcc.gnu.org>2013-08-02 22:06:11 +0000
commitecee672b46a6dc2bab1bebb5f2778e873bbae8b3 (patch)
tree4bcd2d5bdbb4c29689241d0648b42402f8cc0c33 /gcc/lra-constraints.c
parent13ec0527eae61e42c9b0356a9752d6fa4702c2c3 (diff)
downloadgcc-ecee672b46a6dc2bab1bebb5f2778e873bbae8b3.zip
gcc-ecee672b46a6dc2bab1bebb5f2778e873bbae8b3.tar.gz
gcc-ecee672b46a6dc2bab1bebb5f2778e873bbae8b3.tar.bz2
re PR rtl-optimization/58048 (internal compiler error: Max. number of generated reload insns per insn is achieved (90))
2013-08-02 Vladimir Makarov <vmakarov@redhat.com> PR rtl-optimization/58048 * lra-constraints.c (process_alt_operands): Don't check asm operand on register. 2013-08-02 Vladimir Makarov <vmakarov@redhat.com> PR rtl-optimization/58048 * gcc.target/i386/pr58048.c: New. From-SVN: r201454
Diffstat (limited to 'gcc/lra-constraints.c')
-rw-r--r--gcc/lra-constraints.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lra-constraints.c b/gcc/lra-constraints.c
index ced02a4..728c058 100644
--- a/gcc/lra-constraints.c
+++ b/gcc/lra-constraints.c
@@ -1892,7 +1892,7 @@ process_alt_operands (int only_alternative)
/* For asms, verify that the class for this alternative is possible
for the mode that is specified. */
- if (!no_regs_p && REG_P (op) && INSN_CODE (curr_insn) < 0)
+ if (!no_regs_p && INSN_CODE (curr_insn) < 0)
{
int i;
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)