Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 692142
Collapse All | Expand All

(-)a/src/hotspot/share/utilities/globalDefinitions_gcc.hpp.ORIG (-1 / +1 lines)
Lines 283-288 Link Here
283
// GCC versions older than 4.6.4 would fail even with "+0", and needs additional
283
// GCC versions older than 4.6.4 would fail even with "+0", and needs additional
284
// cast to typeof(x) to work around the similar bug.
284
// cast to typeof(x) to work around the similar bug.
285
//
285
//
286
#define ATTRIBUTE_ALIGNED(x) __attribute__((aligned((typeof(x))x+0)))
286
#define ATTRIBUTE_ALIGNED(x) __attribute__((aligned((__typeof__(x))x+0)))
287
287
288
#endif // SHARE_VM_UTILITIES_GLOBALDEFINITIONS_GCC_HPP
288
#endif // SHARE_VM_UTILITIES_GLOBALDEFINITIONS_GCC_HPP
(-)a/src/jdk.pack/share/native/common-unpack/constants.h.ORIG (-1 / +1 lines)
Lines 203-209 Link Here
203
    AO_HAVE_FIELD_FLAGS_HI    = 1<<10,
203
    AO_HAVE_FIELD_FLAGS_HI    = 1<<10,
204
    AO_HAVE_METHOD_FLAGS_HI   = 1<<11,
204
    AO_HAVE_METHOD_FLAGS_HI   = 1<<11,
205
    AO_HAVE_CODE_FLAGS_HI     = 1<<12,
205
    AO_HAVE_CODE_FLAGS_HI     = 1<<12,
206
    AO_UNUSED_MBZ             = (-1)<<13, // options bits reserved for future use.
206
    AO_UNUSED_MBZ             = 0xfffe000, // (-1)<<13, // options bits reserved for future use.
207
207
208
#define ARCHIVE_BIT_DO(F) \
208
#define ARCHIVE_BIT_DO(F) \
209
         F(AO_HAVE_SPECIAL_FORMATS) \
209
         F(AO_HAVE_SPECIAL_FORMATS) \

Return to bug 692142