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 tree-optimization/50574] gcc.c-torture/execute/vector-compare-1.c FAILs on SPARC


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50574

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2011-09-30
     Ever Confirmed|0                           |1

--- Comment #2 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-09-30 10:05:00 UTC ---
It's gimple type verification.  Please break on error() and check what
test fails and how.  tree-cfg.c has

      if (TYPE_VECTOR_SUBPARTS (type) != TYPE_VECTOR_SUBPARTS (op0_type)
          || (GET_MODE_SIZE (TYPE_MODE (type))
              != GET_MODE_SIZE (TYPE_MODE (op0_type))))
        {
          error ("invalid vector comparison resulting type");
          debug_generic_expr (type);
          return true;


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