I just do not see anything about it.
ping
another ping
I'm not sure why this should be in the hardened wiki. -fno-strict-overflow stops gcc from assuming that signed overflow won't happen and prevents certain optimization based on that assumption at -O2 and above. For example, int i = 0; for(;;) { if (i + 1 < 0) { printf("how can this be?! i = %d\n", i); exit(0); } i++; } will sign overflow i and yield true when i = 2147483647. -fstrict-overflow would say to the compiler "go ahead and assume (i+1<0) is always false and do you optimization tricks based on that assumption." -fno-strict-overflow says, no don't assume that when you optimize. I hope this helps. If you want to add it to some wiki somewhere, go ahead, but I don't see it as specifically hardened.