RE: [PATCH 2/2][frontend]: Add novector C pragma

2023-08-02 Thread Joseph Myers
gt; > Subject: RE: [PATCH 2/2][frontend]: Add novector C pragma > > > > Hi, This is a respin of the patch taking in the feedback received from the > > C++ > > part. > > > > Simultaneously it's also a ping 😊 OK. -- Joseph S. Myers jos...@codesourcery.com

RE: [PATCH 2/2][frontend]: Add novector C pragma

2023-08-02 Thread Tamar Christina via Gcc-patches
Ping. > -Original Message- > From: Tamar Christina > Sent: Wednesday, July 26, 2023 8:35 PM > To: Tamar Christina ; gcc-patches@gcc.gnu.org > Cc: nd ; jos...@codesourcery.com > Subject: RE: [PATCH 2/2][frontend]: Add novector C pragma > > Hi, This is a respin of

RE: [PATCH 2/2][frontend]: Add novector C pragma

2023-07-26 Thread Tamar Christina via Gcc-patches
Hi, This is a respin of the patch taking in the feedback received from the C++ part. Simultaneously it's also a ping 😊 Hi All, FORTRAN currently has a pragma NOVECTOR for indicating that vectorization should not be applied to a particular loop. ICC/ICX also has such a pragma for C and C+

[PATCH 2/2][frontend]: Add novector C pragma

2023-07-19 Thread Tamar Christina via Gcc-patches
Hi All, FORTRAN currently has a pragma NOVECTOR for indicating that vectorization should not be applied to a particular loop. ICC/ICX also has such a pragma for C and C++ called #pragma novector. As part of this patch series I need a way to easily turn off vectorization of particular loops, part