1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

workaround for gcc 2.95.3 bug

anybody knows how to distinguish 2.95.3 from 2.95.4 (which is ok) ?
This commit is contained in:
unknown
2004-06-25 01:25:02 +02:00
parent 2b13c53251
commit 50c44be047

View File

@@ -716,6 +716,9 @@ int SQL_SELECT::test_quick_select(THD *thd, key_map keys_to_use,
key++,idx++) key++,idx++)
{ {
ha_rows found_records; 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; double found_read_time;
if (*key) if (*key)
{ {