https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ubizjak at gmail dot com

--- Comment #2 from H.J. Lu <hjl.tools at gmail dot com> ---
LRA ICEs on

(insn 1932 1931 1791 22 (set (reg/v:TF 1001 [orig:161 t ] [161])
        (const_double:TF 0.0 [0x0.0p+0])) /tmp/x.c:85 -1
     (nil))

due to

(define_insn "*movtf_internal"
  [(set (match_operand:TF 0 "nonimmediate_operand" "=v,v ,m,?*r ,!o") 
        (match_operand:TF 1 "general_operand"      "C ,vm,v,*roF,*rC"))]
  "(TARGET_64BIT || TARGET_SSE)
   && !(MEM_P (operands[0]) && MEM_P (operands[1]))
   && (!can_create_pseudo_p ()
       || !CONST_DOUBLE_P (operands[1])
       || ((optimize_function_for_size_p (cfun)
            || (ix86_cmodel == CM_LARGE || ix86_cmodel == CM_LARGE_PIC))
           && standard_sse_constant_p (operands[1], TFmode) == 1
           && !memory_operand (operands[0], TFmode))
       || (!TARGET_MEMORY_MISMATCH_STALL
           && memory_operand (operands[0], TFmode)))"

Reply via email to