diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-17 17:38:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-17 17:38:38 +0000 |
commit | c9df3df9d2a1d7a87f8026b6279639bca0962b91 (patch) | |
tree | aa11dfb022d7115fcb1d744a2c2cd968de7da359 /string/test-strcat.c | |
parent | 9e9f1f159bb957faa125f50efb953088aec831ef (diff) | |
download | glibc-c9df3df9d2a1d7a87f8026b6279639bca0962b91.tar glibc-c9df3df9d2a1d7a87f8026b6279639bca0962b91.tar.gz glibc-c9df3df9d2a1d7a87f8026b6279639bca0962b91.tar.bz2 glibc-c9df3df9d2a1d7a87f8026b6279639bca0962b91.zip |
Update.
* string/test-memchr.c: Likewise.
* string/test-memcmp.c: Likewise.
* string/test-memcpy.c: Likewise.
* string/test-memmove.c: Likewise.
* string/test-memset.c: Likewise.
* string/test-strcat.c: Likewise.
* string/test-strchr.c: Likewise.
* string/test-strcmp.c: Likewise.
* string/test-strcpy.c: Likewise.
* string/test-strlen.c: Likewise.
* string/test-strncmp.c: Likewise.
* string/test-strpbrk.c: Likewise.
* string/test-strrchr.c: Likewise.
* string/test-strspn.c: Likewise.
Diffstat (limited to 'string/test-strcat.c')
-rw-r--r-- | string/test-strcat.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/string/test-strcat.c b/string/test-strcat.c index d241741c5e..a3adfe3d8d 100644 --- a/string/test-strcat.c +++ b/string/test-strcat.c @@ -1,5 +1,5 @@ /* Test and measure strcat functions. - Copyright (C) 1999, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek <jakub@redhat.com>, 1999. @@ -59,7 +59,9 @@ do_one_test (impl_t *impl, char *dst, const char *src) if (HP_TIMING_AVAIL) { - hp_timing_t start, stop, best_time = ~ (hp_timing_t) 0; + hp_timing_t start __attribute ((used)); + hp_timing_t stop __attribute ((used)); + hp_timing_t best_time = ~ (hp_timing_t) 0; size_t i; for (i = 0; i < 32; ++i) |