This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug testsuite/63439] [5 Regression] FAIL: gcc.dg/vect/vect-33.c scan-tree-dump vect "Alignment of access forced using peeling"


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

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
So SPARC has

static machine_mode
sparc_preferred_simd_mode (machine_mode mode)
{
  if (TARGET_VIS)
    switch (mode)
      {
      case SImode:
        return V2SImode;
      case HImode:
        return V4HImode;
      case QImode:
        return V8QImode;

      default:;
      }

  return word_mode;
}

which means it is unconditionally vect64 (I assume word_mode is DImode).


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]