public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/114890] New: [14/15 Regression] Big-endian addp intrinsics reorder operands
@ 2024-04-29 13:43 wilco at gcc dot gnu.org
  2024-04-29 13:44 ` [Bug target/114890] " wilco at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: wilco at gcc dot gnu.org @ 2024-04-29 13:43 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 114890
           Summary: [14/15 Regression] Big-endian addp intrinsics reorder
                    operands
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wilco at gcc dot gnu.org
  Target Milestone: ---

The following example:

#include "arm_neon.h"

uint32x4_t test (uint32x4_t v1, uint32x4_t v2)
{
  return vpaddq_u32 (v1, v2);
}

compiles with -O2 -mlittle-endian into:

test:
        addp    v0.4s, v0.4s, v1.4s
        ret

However -O2 -mbig-endian gives the incorrect:

        addp    v0.4s, v1.4s, v0.4s
        ret

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug target/114890] [14/15 Regression] Big-endian addp intrinsics reorder operands
  2024-04-29 13:43 [Bug target/114890] New: [14/15 Regression] Big-endian addp intrinsics reorder operands wilco at gcc dot gnu.org
@ 2024-04-29 13:44 ` wilco at gcc dot gnu.org
  0 siblings, 0 replies; 2+ messages in thread
From: wilco at gcc dot gnu.org @ 2024-04-29 13:44 UTC (permalink / raw)
  To: gcc-bugs

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

Wilco <wilco at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |15.0
             Target|                            |aarch64-*-*

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-04-29 13:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-29 13:43 [Bug target/114890] New: [14/15 Regression] Big-endian addp intrinsics reorder operands wilco at gcc dot gnu.org
2024-04-29 13:44 ` [Bug target/114890] " wilco at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).