H. Peter Anvin | e845c06 | 2008-01-30 13:30:06 +0100 | [diff] [blame^] | 1 | #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 */ |