I know that -O1 automatically turns on certain flags. These flags can be turned on manually though. If I don't specify -O1, it should still be possible to get -O1 optimization by specifying all the flags that -O1 turns on.
I tried
-fthread-jumps -fcprop-registers -fguess-branch-probability
but it still does not do -O1 optimization. I can tell when I use gprof because the performance is not as good.
Which flags do I turn on to get -O1 optimization?