_EXCL == 0 won't compile because it creates duplicate cases.
And when I tried it (gcc 4.1.1) _CREATE_NEW == 0 said that the instruction corresponding to line 617 was executed even with -O2 (and even though -O2 doesn't appear to produce any code for that instruction).
What puzzles me is that the numbers don't add up: the switch instruction was executed 34 times but the various cases were only executed 32 times in total (which leads me to think that line 617 was executed twice).
no subject
And when I tried it (gcc 4.1.1) _CREATE_NEW == 0 said that the instruction corresponding to line 617 was executed even with -O2 (and even though -O2 doesn't appear to produce any code for that instruction).
What puzzles me is that the numbers don't add up: the switch instruction was executed 34 times but the various cases were only executed 32 times in total (which leads me to think that line 617 was executed twice).