summaryrefslogtreecommitdiff
path: root/sql/opt_range.cc
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-06-25 01:25:02 +0200
committerunknown <serg@serg.mylan>2004-06-25 01:25:02 +0200
commit50c44be0473bceca34e32004ce8169fe02654786 (patch)
tree82240e4f5af73264093de2d5b2290935609625c6 /sql/opt_range.cc
parent2b13c532517d803bae1fbab05577e71ab7c60241 (diff)
downloadmariadb-git-50c44be0473bceca34e32004ce8169fe02654786.tar.gz
workaround for gcc 2.95.3 bug
anybody knows how to distinguish 2.95.3 from 2.95.4 (which is ok) ?
Diffstat (limited to 'sql/opt_range.cc')
-rw-r--r--sql/opt_range.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/opt_range.cc b/sql/opt_range.cc
index 804bb0a413c..e3a9ba4d01d 100644
--- a/sql/opt_range.cc
+++ b/sql/opt_range.cc
@@ -716,6 +716,9 @@ int SQL_SELECT::test_quick_select(THD *thd, key_map keys_to_use,
key++,idx++)
{
ha_rows found_records;
+#if defined(__GNUC__) && (__GNUC__ == 2 && __GNUC_MINOR__ == 95) && defined(__OPTIMIZE__)
+ volatile // gcc 2.95.3 bug in -O3 mode
+#endif
double found_read_time;
if (*key)
{