src/hotspot/share/utilities/globalDefinitions_gcc.hpp
changeset 54190 021448dc442c
parent 54030 889dae20c4c4
child 55030 703b2c04fc2c
--- a/src/hotspot/share/utilities/globalDefinitions_gcc.hpp	Tue Mar 19 10:47:17 2019 -0400
+++ b/src/hotspot/share/utilities/globalDefinitions_gcc.hpp	Tue Mar 19 14:08:20 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