aboutsummaryrefslogtreecommitdiff
path: root/libgomp
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2011-08-02 14:44:06 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2011-08-02 07:44:06 -0700
commitc01ecafca3a2effd729b30df2aebfa8cef261ff6 (patch)
tree938df688971e21338d8bc8dd95a27b3956ef1014 /libgomp
parentab027d28145e559a2ed5aec3bceda592f55b4687 (diff)
downloadgcc-c01ecafca3a2effd729b30df2aebfa8cef261ff6.zip
gcc-c01ecafca3a2effd729b30df2aebfa8cef261ff6.tar.gz
gcc-c01ecafca3a2effd729b30df2aebfa8cef261ff6.tar.bz2
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__. From-SVN: r177166
Diffstat (limited to 'libgomp')
-rw-r--r--libgomp/ChangeLog5
-rw-r--r--libgomp/config/linux/x86/futex.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 292d58a..efd0c04 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,8 @@
+2011-08-02 H.J. Lu <hongjiu.lu@intel.com>
+
+ * config/linux/x86/futex.h: Check __x86_64__ instead of
+ __LP64__.
+
2011-07-29 Jakub Jelinek <jakub@redhat.com>
PR middle-end/49897
diff --git a/libgomp/config/linux/x86/futex.h b/libgomp/config/linux/x86/futex.h
index cb7461d..419f4d9 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)