Commit 5615a07d by Andreas Schwab Committed by Andreas Schwab

linux-atomic.c (__sync_lock_test_and_set_1): Fix type.

* config/m68k/linux-atomic.c (__sync_lock_test_and_set_1): Fix
type.

From-SVN: r190480
parent 7f3f8d3f
2012-08-17 Andreas Schwab <schwab@linux-m68k.org>
* config/m68k/linux-atomic.c (__sync_lock_test_and_set_1): Fix
type.
2012-08-16 David Edelsohn <dje.gcc@gmail.com>
* config.host (*-*-aix*): Move rs6000/t-ibm-ldouble after
......
/* Linux-specific atomic operations for m68k Linux.
Copyright (C) 2011 Free Software Foundation, Inc.
Copyright (C) 2011, 2012 Free Software Foundation, Inc.
Based on code contributed by CodeSourcery for ARM EABI Linux.
This file is part of GCC.
......@@ -207,5 +207,5 @@ SUBWORD_BOOL_CAS (unsigned char, 1)
#define COMMA ,
WORD_SYNC_OP (test_and_set, , COMMA, oldval)
SUBWORD_SYNC_OP (test_and_set, , COMMA, unsigned short, 1, oldval)
SUBWORD_SYNC_OP (test_and_set, , COMMA, unsigned char, 1, oldval)
SUBWORD_SYNC_OP (test_and_set, , COMMA, unsigned short, 2, oldval)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment