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

Python __call__ special method practical example -

arrays - jQuery - Retrieve values from HTML elements and return their sum -