ee4478213d
- Add a patch for fixing GCC 6 build issue (RHBZ#1305108). - Replace kill-werror.patch with no-unused-const.patch.
17 lines
611 B
Diff
17 lines
611 B
Diff
--- lib/include/x86cpuid.h.old 2016-05-24 23:23:20.747118224 -0700
|
|
+++ lib/include/x86cpuid.h 2016-05-24 23:28:35.829547406 -0700
|
|
@@ -905,11 +905,9 @@
|
|
*
|
|
* e.g. - CPUID_VIRT_BITS_MASK = 0xff00
|
|
* - CPUID_VIRT_BITS_SHIFT = 8
|
|
- *
|
|
- * Note: The MASK definitions must use some gymnastics to get
|
|
- * around a warning when shifting left by 32.
|
|
*/
|
|
-#define VMW_BIT_MASK(shift) (((1 << (shift - 1)) << 1) - 1)
|
|
+#define VMW_BIT_MASK(shift) (0xffffffffu >> (32 - shift))
|
|
+
|
|
|
|
#define FIELD(lvl, ecxIn, reg, bitpos, size, name, s, c3) \
|
|
CPUID_##name##_SHIFT = bitpos, \
|