This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 2/3, libgomp ia64]: Change gomp_futex_{wait,wake} to int


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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]