We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c28a31 commit 9096d6cCopy full SHA for 9096d6c
1 file changed
eidos/eidos_simd.h
@@ -73,6 +73,13 @@
73
#pragma GCC diagnostic pop
74
#endif
75
76
+// Disable certain warnings for the remainder of this file
77
+#pragma GCC diagnostic push
78
+#pragma GCC diagnostic ignored "-Waggressive-loop-optimizations"
79
+#pragma clang diagnostic push
80
+#pragma clang diagnostic ignored "-Waggressive-loop-optimizations"
81
+
82
83
// ================================
84
// SIMD Vector Math Operations
85
@@ -1204,4 +1211,10 @@ inline void convolve_dot_product_scaled_float64(
1204
1211
1205
1212
} // namespace Eidos_SIMD
1206
1213
1214
1215
+// stop suppressing warnings
1216
+#pragma clang diagnostic pop
1217
+#pragma GCC diagnostic pop
1218
1219
1207
1220
#endif /* eidos_simd_h */
0 commit comments