diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-05-01 09:59:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-05-01 09:59:45 +0000 |
commit | a97d1494f7dc5ec6978aa234b15faff29a4607ee (patch) | |
tree | f62452d0d55dce0b97bbe9b8c650fb5d9d23cbd4 /sysdeps/i386 | |
parent | 0d3fe819f6e584ccd1146ffba91c24ae06374ffa (diff) | |
download | glibc-a97d1494f7dc5ec6978aa234b15faff29a4607ee.tar glibc-a97d1494f7dc5ec6978aa234b15faff29a4607ee.tar.gz glibc-a97d1494f7dc5ec6978aa234b15faff29a4607ee.tar.bz2 glibc-a97d1494f7dc5ec6978aa234b15faff29a4607ee.zip |
Update.
* string/bits/string2.h: Only use __builtin_memset for egcs 1.1 and
gcc3.
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/i486/bits/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/i486/bits/string.h b/sysdeps/i386/i486/bits/string.h index 70a60005bb..e726a340a1 100644 --- a/sysdeps/i386/i486/bits/string.h +++ b/sysdeps/i386/i486/bits/string.h @@ -296,7 +296,7 @@ __memset_ccn_by4 (void *__s, unsigned int __c, size_t __n) "addl $4,%1\n\t" "decl %2\n\t" "jnz 1b\n" - : "=&q" (__c), "=&r" (__tmp), "=&r" (__d0) + : "=&r" (__c), "=&r" (__tmp), "=&r" (__d0) : "0" ((unsigned int) __c), "1" (__tmp), "2" (__n / 4) : "memory", "cc"); #endif |