Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 603472 | Differences between
and this patch

Collapse All | Expand All

(-)a/arch/x86/include/asm/bitops.h (-2 / +1 lines)
Lines 50-56 Link Here
50
 * a mask operation on a byte.
50
 * a mask operation on a byte.
51
 */
51
 */
52
#define IS_IMMEDIATE(nr)		(__builtin_constant_p(nr))
52
#define IS_IMMEDIATE(nr)		(__builtin_constant_p(nr))
53
#define CONST_MASK_ADDR(nr, addr)	BITOP_ADDR((void *)(addr) + ((nr)>>3))
53
#define CONST_MASK_ADDR(nr, addr)	BITOP_ADDR((uintptr_t)(addr) + ((nr)>>3))
54
#define CONST_MASK(nr)			(1 << ((nr) & 7))
54
#define CONST_MASK(nr)			(1 << ((nr) & 7))
55
55
56
/**
56
/**
57
- 

Return to bug 603472