From: Alexandre Oliva Date: Fri, 14 Mar 2003 07:03:36 +0000 (+0000) Subject: * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Don't X-Git-Tag: glibc-2.16-ports-before-merge~1424 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1dd24665befd04428beb07d8372bf083fe41d85c;p=thirdparty%2Fglibc.git * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Don't .set mips2 on new abis. --- diff --git a/sysdeps/unix/sysv/linux/mips/sys/tas.h b/sysdeps/unix/sysv/linux/mips/sys/tas.h index 7ad916c3c9e..a840a9427a4 100644 --- a/sysdeps/unix/sysv/linux/mips/sys/tas.h +++ b/sysdeps/unix/sysv/linux/mips/sys/tas.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000, 2002 Free Software Foundation, Inc. +/* Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maciej W. Rozycki , 2000. @@ -41,7 +41,9 @@ _test_and_set (int *p, int v) __THROW ("/* Inline test and set */\n" "1:\n\t" ".set push\n\t" +#if _MIPS_SIM == _MIPS_SIM_ABI32 ".set mips2\n\t" +#endif "ll %0,%3\n\t" "move %1,%4\n\t" "beq %0,%4,2f\n\t"