We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 987656d commit 0599a05Copy full SHA for 0599a05
src/hotspot/share/utilities/compilerWarnings_gcc.hpp
@@ -69,7 +69,10 @@
69
70
#endif // clang/gcc version check
71
72
-#if (__GNUC__ >= 10) || (defined(__clang_major__) && (__clang_major__ >= 14))
+#if (__GNUC__ >= 10)
73
+// TODO: Re-enable warning attribute for Clang once
74
+// https://github.com/llvm/llvm-project/issues/56519 is fixed and released.
75
+// || (defined(__clang_major__) && (__clang_major__ >= 14))
76
77
// Use "warning" attribute to detect uses of "forbidden" functions.
78
//
@@ -92,6 +95,6 @@
92
95
__VA_ARGS__ \
93
96
PRAGMA_DIAG_POP
94
97
-#endif // gcc10+ or clang14+
98
+#endif // gcc10+
99
100
#endif // SHARE_UTILITIES_COMPILERWARNINGS_GCC_HPP
0 commit comments