add unreachable statement to solve gcc-4.0.x compiler bug for optimized builds on os x

This commit is contained in:
Tom Henderson
2007-08-07 20:37:52 -07:00
parent e6aae4aa5f
commit 02ccad8fbc

View File

@@ -222,7 +222,9 @@ HighPrecision::Compare (HighPrecision const &o) const
HP128INC (m_nslowcmps);
return SlowCompare (o);
}
// The below statement is unreachable but necessary for optimized
// builds with gcc-4.0.x due to a compiler bug.
return 0;
}
HighPrecision
HighPrecision::Zero (void)