[IA64] remove BUILD_BUG_ON from paravirt_getreg()

CC arch/ia64/kernel/asm-offsets.s
In file included from include/linux/bitops.h:17,
from include/linux/kernel.h:15,
from include/linux/sched.h:52,
from arch/ia64/kernel/asm-offsets.c:9:
arch/ia64/include/asm/bitops.h: In function 'set_bit':
arch/ia64/include/asm/bitops.h:47: error: implicit declaration of function 'BUILD_BUG_ON'

Obvious inclusion of kernel.h doesn't fix it, because of circular dependencies
involving fls.h and log2(). Fixing the latter requires some serious header surgery,
it seems, so just remove BUILD_BUG_ON for now.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>

authored by Alexey Dobriyan and committed by Tony Luck fc102125 437f2f91

-1
-1
arch/ia64/include/asm/paravirt_privop.h
··· 83 83 #define paravirt_getreg(reg) \ 84 84 ({ \ 85 85 unsigned long res; \ 86 - BUILD_BUG_ON(!__builtin_constant_p(reg)); \ 87 86 if ((reg) == _IA64_REG_IP) \ 88 87 res = ia64_native_getreg(_IA64_REG_IP); \ 89 88 else \