Merge
authorbobv
Tue, 19 Mar 2019 14:31:52 -0400
changeset 54194 c2238a12f259
parent 54193 d5da034032e9 (current diff)
parent 54190 021448dc442c (diff)
child 54195 4b6a629d0615
Merge
--- a/src/hotspot/share/utilities/globalDefinitions_gcc.hpp	Tue Mar 19 12:29:40 2019 -0400
+++ b/src/hotspot/share/utilities/globalDefinitions_gcc.hpp	Tue Mar 19 14:31:52 2019 -0400
@@ -270,8 +270,8 @@
 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53017
 //
 // GCC versions older than 4.6.4 would fail even with "+0", and needs additional
-// cast to typeof(x) to work around the similar bug.
+// cast to __typeof__(x) to work around the similar bug.
 //
-#define ATTRIBUTE_ALIGNED(x) __attribute__((aligned((typeof(x))x+0)))
+#define ATTRIBUTE_ALIGNED(x) __attribute__((aligned((__typeof__(x))x+0)))
 
 #endif // SHARE_UTILITIES_GLOBALDEFINITIONS_GCC_HPP