I was wondering if there\'s a way to disable predication in gcc/g++. When I get the object dump of my code, I don\'t want there to be any CMOV, CCMP, etc instructions in it.
You could try targetting a previous x86 instruction set that didn't have these instructions?
http://gcc.gnu.org/onlinedocs/gcc-3.2.3/gcc/Target-Options.html
gcc -b i386 main.c
(I've not tried this)