This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH 2/3, libgomp ia64]: Change gomp_futex_{wait,wake} to int
- From: Uros Bizjak <ubizjak at gmail dot com>
- To: Richard Henderson <rth at redhat dot com>
- Cc: "gcc-patches at gcc dot gnu dot org" <gcc-patches at gcc dot gnu dot org>, Jakub Jelinek <jakub at redhat dot com>
- Date: Wed, 27 May 2015 22:54:31 +0200
- Subject: Re: [PATCH 2/3, libgomp ia64]: Change gomp_futex_{wait,wake} to int
- Authentication-results: sourceware.org; auth=none
2015-05-27 Uros Bizjak <ubizjak@gmail.com>
* config/linux/ia64/futex.h (sys_futex0) Change operand "op" to int.
Untested.
OK for mainline?
Index: config/linux/ia64/futex.h
===================================================================
--- config/linux/ia64/futex.h (revision 223771)
+++ config/linux/ia64/futex.h (working copy)
@@ -30,7 +30,7 @@
static inline long
-sys_futex0(int *addr, long op, int val)
+sys_futex0(int *addr, int op, int val)
{
register long out0 asm ("out0") = (long) addr;
register long out1 asm ("out1") = op;