From c01ecafca3a2effd729b30df2aebfa8cef261ff6 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Tue, 2 Aug 2011 14:44:06 +0000 Subject: [PATCH] Check __x86_64__ instead of __LP64__ for x86 futex. 2011-08-02 H.J. Lu * config/linux/x86/futex.h: Check __x86_64__ instead of __LP64__. From-SVN: r177166 --- libgomp/ChangeLog | 5 +++++ libgomp/config/linux/x86/futex.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 292d58a570b..efd0c04c71b 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2011-08-02 H.J. Lu + + * config/linux/x86/futex.h: Check __x86_64__ instead of + __LP64__. + 2011-07-29 Jakub Jelinek PR middle-end/49897 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)