How can I disable vectorization while using GCC? -


i compiling code using following command:

gcc -o3 -ftree-vectorizer-verbose=6 -msse4.1 -ffast-math  

with optimizations enabled.

but want disable vectorization while keeping other optimizations.

most of gcc switches can used no prefix disable behavior. try -fno-tree-vectorize (after -o3 on command line).


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -