diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-02 14:44:06 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-02 14:44:06 +0000 |
commit | 73d3a7edff980d3a22df83a4947a0c4f062c2989 (patch) | |
tree | 938df688971e21338d8bc8dd95a27b3956ef1014 /libgomp/config/linux | |
parent | 6daa9793b1ef371660af587a47708dac64fc10e6 (diff) | |
download | gcc-73d3a7edff980d3a22df83a4947a0c4f062c2989.tar.gz |
Check __x86_64__ instead of __LP64__ for x86 futex.
2011-08-02 H.J. Lu <hongjiu.lu@intel.com>
* config/linux/x86/futex.h: Check __x86_64__ instead of
__LP64__.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177166 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp/config/linux')
-rw-r--r-- | libgomp/config/linux/x86/futex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgomp/config/linux/x86/futex.h b/libgomp/config/linux/x86/futex.h index cb7461d89e6..419f4d981c6 100644 --- a/libgomp/config/linux/x86/futex.h +++ b/libgomp/config/linux/x86/futex.h @@ -24,7 +24,7 @@ /* Provide target-specific access to the futex system call. */ -#ifdef __LP64__ +#ifdef __x86_64__ # ifndef SYS_futex # define SYS_futex 202 # endif @@ -138,7 +138,7 @@ futex_wake (int *addr, int count) } } -#endif /* __LP64__ */ +#endif /* __x86_64__ */ static inline void cpu_relax (void) |