From: drepper Date: Mon, 3 May 1999 22:05:11 +0000 (+0000) Subject: (__FD_ZERO): Remove memory output specification. It#s not necessary. X-Git-Tag: glibc-2_1_1~220 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=8c9d33ba48132748c754688931eb4488d1e578cf (__FD_ZERO): Remove memory output specification. It#s not necessary. --- diff --git a/sysdeps/i386/bits/select.h b/sysdeps/i386/bits/select.h index 0d1b71bd6f..6acfc5b9ae 100644 --- a/sysdeps/i386/bits/select.h +++ b/sysdeps/i386/bits/select.h @@ -27,11 +27,10 @@ do { \ int __d0, __d1; \ __asm__ __volatile__ ("cld; rep; stosl" \ - : "=m" (__FDS_BITS (fdsp)[__FDELT (__FD_SETSIZE)]), \ - "=c" (__d0), "=D" (__d1) \ - : "a" (0), "1" (sizeof (__fd_set) \ + : "=c" (__d0), "=D" (__d1) \ + : "a" (0), "0" (sizeof (__fd_set) \ / sizeof (__fd_mask)), \ - "2" (&__FDS_BITS (fdsp)[0]) \ + "1" (&__FDS_BITS (fdsp)[0]) \ : "memory"); \ } while (0)