Re: [PATCH 1/2] Add C99-style constructor macros for specific-sized integers

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Russell King
Date: Monday, March 3, 2008 - 4:43 am

On Mon, Mar 03, 2008 at 10:57:32AM +0000, David Howells wrote:

We already have something like this on ARM - include/asm-arm/memory.h

/*
 * Allow for constants defined here to be used from assembly code
 * by prepending the UL suffix only with actual C code compilation.
 */
#ifndef __ASSEMBLY__
#define UL(x) (x##UL)
#else
#define UL(x) (x)
#endif

-- 
Russell King
 Linux kernel    2.6 ARM Linux   - http://www.arm.linux.org.uk/
 maintainer of:
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 2/2] Use U64_C() instead of casts in kernel/time.c, H. Peter Anvin, (Sun Mar 2, 5:09 pm)
Re: [PATCH 1/2] Add C99-style constructor macros for speci ..., Segher Boessenkool, (Sun Mar 2, 8:20 pm)
Re: [PATCH 1/2] Add C99-style constructor macros for speci ..., Russell King, (Mon Mar 3, 4:43 am)
Re: [PATCH 1/2] Add C99-style constructor macros for speci ..., Segher Boessenkool, (Mon Mar 3, 1:23 pm)