diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-04-04 06:17:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-04-04 06:17:27 +0000 |
commit | 5da3d377184465497da472ad71a26a578fe6a5dd (patch) | |
tree | 96d45aede6cb95d7f9ad77bbf03468bbb0c1fde5 /string/test-ffs.c | |
parent | 4e73e1151d457981323a7316861a2493a57dbc6c (diff) | |
download | glibc-5da3d377184465497da472ad71a26a578fe6a5dd.tar.gz glibc-5da3d377184465497da472ad71a26a578fe6a5dd.tar.xz glibc-5da3d377184465497da472ad71a26a578fe6a5dd.zip |
Update.
* sysdeps/powerpc/powerpc64/ffsll.c: New file. * sysdeps/powerpc/elf/libc-start.c: No need for a separate
Diffstat (limited to 'string/test-ffs.c')
-rw-r--r-- | string/test-ffs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/test-ffs.c b/string/test-ffs.c index ad2a4cd374..3725910544 100644 --- a/string/test-ffs.c +++ b/string/test-ffs.c @@ -48,7 +48,7 @@ main (void) for (i=0 ; i < 8 * sizeof (type); i++) \ try (#fct, 1ll << i, fct (((type) 1) << i), i + 1); \ for (i=0 ; i < 8 * sizeof (type) ; i++) \ - try (#fct, (~0ll >> i) << i, fct ((~((type) 0) >> i) << i), i + 1); \ + try (#fct, (~((type) 0) >> i) << i, fct ((~((type) 0) >> i) << i), i + 1);\ try (#fct, 0x80008000, fct ((type) 0x80008000), 16) TEST (ffs, int); |