* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr59119.c
blobb026ba5d4ac88e7f41d04105fc66dd335cae1e97
1 extern void *memmove (void *, const void *, __SIZE_TYPE__);
2 extern void *memset (void *, int, __SIZE_TYPE__);
4 typedef struct {
5 long n_prefix;
6 long n_spadding;
7 } NumberFieldWidths;
9 void
10 fill_number(char *buf, const NumberFieldWidths *spec)
12 if (spec->n_prefix) {
13 memmove(buf,
14 (char *) 0,
15 spec->n_prefix * sizeof(char));
16 buf += spec->n_prefix;
18 if (spec->n_spadding) {
19 memset(buf, 0, spec->n_spadding);
20 buf += spec->n_spadding;