This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Dynamic growable arrays for internal use


Hi Florian,

I get the following warning / werror with gcc 4.8.5 on s390x:
gcc tst-dynarray.c -O3 -c ... -o <build>/malloc/tst-dynarray.o
In file included from tst-dynarray.c:50:0:
tst-dynarray.c: In function ‘do_test’:
../support/check.h:51:8: error: ‘result.length’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
     if (expr)                                                   \
        ^
tst-dynarray.c:377:23: note: ‘result.length’ was declared here
     struct long_array result;
                       ^
In file included from tst-dynarray.c:50:0:
../support/check.h:51:8: error: ‘result.array’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
     if (expr)                                                   \
        ^
tst-dynarray.c:377:23: note: ‘result.array’ was declared here
     struct long_array result;
                       ^
cc1: all warnings being treated as errors


Have you seen those warnings on other architectures, too?

Bye.
Stefan


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]