I would like to disable dead code elimination optimization in c++ compilation. Is there a way to disable this particular optimization by keeping all other -O optimization. I tried with -fnodce but its not working.
Update (copied from a comment): I have something like
timer t;
t.start();
for(int i=1;i<=1000;++i)
object t;
t.stop();
I want to measure object t
construction time and do nothing with it. I dont want to do this by creating an array of 1000 objects. Is there a way to solve this?
Add "volatile" qualifier on constructed objects, this tells the compiler to assume that there are side-effects to construction thus preventing optimizing it away. That is: