Skip to content

Commit

Permalink
Disable gcc's tree-vectorizer pass on all operating systems
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Apr 19, 2023
1 parent c2fe9cb commit c9174ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/x86_64/zgemv_t_4.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "common.h"

#if (defined(OS_DARWIN) || defined(OS_WINDOWS)) && (defined(__GNUC__) && __GNUC__ > 11)
#if (defined(__GNUC__) && __GNUC__ > 11)
#pragma GCC optimize("no-tree-vectorize")
#endif

Expand Down

0 comments on commit c9174ae

Please sign in to comment.