8661ae75488a59277e6f0b5b814fe40692fc3823
[deliverable/linux.git] / include / asm-x86 / asm.h
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 # define _ASM_MOV_UL " movl "
10
11 #else
12 /* 64 bits */
13
14 # define _ASM_PTR " .quad "
15 # define _ASM_ALIGN " .balign 8 "
16 # define _ASM_MOV_UL " movq "
17
18 #endif /* CONFIG_X86_32 */
19
20 #endif /* _ASM_X86_ASM_H */
This page took 0.030233 seconds and 4 git commands to generate.