We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8398ee commit c47069eCopy full SHA for c47069e
storage/innobase/row/row0vers.cc
@@ -1211,6 +1211,10 @@ row_vers_build_for_consistent_read(
1211
return(err);
1212
}
1213
1214
+#if defined __aarch64__&&defined __GNUC__&&__GNUC__==4&&!defined __clang__
1215
+/* Avoid GCC 4.8.5 internal compiler error "could not split insn". */
1216
+# pragma GCC optimize ("O0")
1217
+#endif
1218
/*****************************************************************//**
1219
Constructs the last committed version of a clustered index record,
1220
which should be seen by a semi-consistent read. */
0 commit comments