summaryrefslogblamecommitdiffstats
path: root/include/asm-x86/asm.h
blob: b5006eb9acbac2f75766df5a994ff336630c76f5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                     
#ifndef _ASM_X86_ASM_H
#define _ASM_X86_ASM_H

#ifdef CONFIG_X86_32
/* 32 bits */

# define _ASM_PTR	" .long "
# define _ASM_ALIGN	" .balign 4 "

#else
/* 64 bits */

# define _ASM_PTR	" .quad "
# define _ASM_ALIGN	" .balign 8 "

#endif /* CONFIG_X86_32 */

#endif /* _ASM_X86_ASM_H */