Check __x86_64__ instead of __LP64__ for x86 futex.
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 Aug 2011 14:44:06 +0000 (14:44 +0000)
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 Aug 2011 14:44:06 +0000 (14:44 +0000)
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

libgomp/ChangeLog
libgomp/config/linux/x86/futex.h

index 292d58a..efd0c04 100644 (file)
@@ -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
index cb7461d..419f4d9 100644 (file)
@@ -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)