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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #8 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Even:
/* { dg-options "-O2 -fdump-rtl-ira-details-blocks -mcpu=cortex-a9
-march=armv7-a -mfpu=vfp -mfloat-abi=soft" } */
/* { dg-require-effective-target c99_runtime } */

void foo (float *);

void
f2 (float *x)
{
  __builtin_sqrtf (x[0]);
  foo (x);
}

/* { dg-final { scan-rtl-dump-not "Invalid sum" "ira" } } */
reproduces it with a cross, the Invalid sum messages still don't appear in the
*.optimized jump, but do appear in the *.expand jump.

Reply via email to