1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

test-skeleton.c: xmalloc, xcalloc, xrealloc are potentially unused

__attribute__ ((used)) means that the function has to be
emitted in assembly because it is referenced in ways the
compiler cannot detect (such as asm statements, or some
post-processing on the generated assembly).

The unused attribute needs to come first, otherwise it is
applied to the return type and not the function definition.
This commit is contained in:
Florian Weimer
2016-06-23 11:01:21 +02:00
parent 14699b6e37
commit 9d52cb01f2
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2016-06-23 Florian Weimer <fweimer@redhat.com>
* test-skeleton.c (xmalloc, xcalloc, xrealloc): Mark as
potentially unused.
2016-06-22 Florian Weimer <fweimer@redhat.com> 2016-06-22 Florian Weimer <fweimer@redhat.com>
* test-skeleton.c (write_message): New function. * test-skeleton.c (write_message): New function.

View File

@ -78,8 +78,8 @@ oom_error (const char *fn, size_t size)
} }
/* Allocate N bytes of memory dynamically, with error checking. */ /* Allocate N bytes of memory dynamically, with error checking. */
__attribute__ ((unused))
static void * static void *
__attribute__ ((used))
xmalloc (size_t n) xmalloc (size_t n)
{ {
void *p; void *p;
@ -91,8 +91,8 @@ xmalloc (size_t n)
} }
/* Allocate memory for N elements of S bytes, with error checking. */ /* Allocate memory for N elements of S bytes, with error checking. */
__attribute__ ((unused))
static void * static void *
__attribute__ ((used))
xcalloc (size_t n, size_t s) xcalloc (size_t n, size_t s)
{ {
void *p; void *p;
@ -105,8 +105,8 @@ xcalloc (size_t n, size_t s)
/* Change the size of an allocated block of memory P to N bytes, /* Change the size of an allocated block of memory P to N bytes,
with error checking. */ with error checking. */
__attribute__ ((unused))
static void * static void *
__attribute__ ((used))
xrealloc (void *p, size_t n) xrealloc (void *p, size_t n)
{ {
p = realloc (p, n); p = realloc (p, n);