blob: b5006eb9acbac2f75766df5a994ff336630c76f5 [file] [log] [blame]
H. Peter Anvine845c062008-01-30 13:30:06 +01001#ifndef _ASM_X86_ASM_H
2#define _ASM_X86_ASM_H
3
4#ifdef CONFIG_X86_32
5/* 32 bits */
6
7# define _ASM_PTR " .long "
8# define _ASM_ALIGN " .balign 4 "
9
10#else
11/* 64 bits */
12
13# define _ASM_PTR " .quad "
14# define _ASM_ALIGN " .balign 8 "
15
16#endif /* CONFIG_X86_32 */
17
18#endif /* _ASM_X86_ASM_H */