-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 79715 b: refs/heads/master c: e845c06 h: refs/heads/master i: 79713: 1a2c307 79711: 963696a v: v3
- Loading branch information
H. Peter Anvin
authored and
Ingo Molnar
committed
Jan 30, 2008
1 parent
06ba90b
commit 572a74c
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 39d44a51474a52bec6d72d30ebc76f5159101d90 | ||
refs/heads/master: e845c06bced7f5f325e0f9aefd3207cd45c21ff2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 */ |