diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2012-11-10 12:28:12 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2012-11-10 12:28:12 +0100 |
commit | d1bc38e623d1f99525168fe3e18b6f66932310e1 (patch) | |
tree | 002557346fe77d05d34ab9cc9dab784fe9ab8783 /gcc/config | |
parent | a22e57398097cc439bfa0f0cb4a1fecc64349e07 (diff) | |
download | gcc-d1bc38e623d1f99525168fe3e18b6f66932310e1.zip gcc-d1bc38e623d1f99525168fe3e18b6f66932310e1.tar.gz gcc-d1bc38e623d1f99525168fe3e18b6f66932310e1.tar.bz2 |
re PR rtl-optimization/55247 (internal compiler error: Max. number of generated reload insns per insn is achieved (90))
PR target/55247
* config/i386/i386.md (*movti_internal_rex64): Add "!" to riF->o
alternative.
testsuite/ChangeLog:
PR target/55247
* gcc.target/i386/pr55247.c: New test.
From-SVN: r193388
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 243ab4e..2598a1f 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -1874,7 +1874,7 @@ (const_string "OI")))]) (define_insn "*movti_internal_rex64" - [(set (match_operand:TI 0 "nonimmediate_operand" "=!r ,o ,x,x ,m") + [(set (match_operand:TI 0 "nonimmediate_operand" "=!r ,!o ,x,x ,m") (match_operand:TI 1 "general_operand" "riFo,riF,C,xm,x"))] "TARGET_64BIT && !(MEM_P (operands[0]) && MEM_P (operands[1]))" { |