diff options
author | vmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-08-02 22:06:11 +0000 |
---|---|---|
committer | vmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-08-02 22:06:11 +0000 |
commit | 1524bcdc97f2b3e74cecbbd7d01e2b56ac2ee361 (patch) | |
tree | 4bcd2d5bdbb4c29689241d0648b42402f8cc0c33 /gcc/lra-constraints.c | |
parent | 4953902788ccdcb4d5f574483da523155329f13a (diff) | |
download | gcc-1524bcdc97f2b3e74cecbbd7d01e2b56ac2ee361.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@201454 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lra-constraints.c')
-rw-r--r-- | gcc/lra-constraints.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lra-constraints.c b/gcc/lra-constraints.c index ced02a41356..728c0584585 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++) |