This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

Commited: remove uint32_t declaration from testsuite/gcc.dg/vect/slp-reduc-sad.c


The declaration was not used, and it clashed with a system declaration from newlib. On a 32 bit typical system, uint32_t can be defined using unsigned, unsigned int or unsigned long.

gcc.dg/vect/slp-reduc-sad.c includes gcc.dg/vect/tree-vect.h,
which includes newlib/libc/include/signal.h,
which includes newlib/libc/include/sys/signal.h,
which includes newlib/libc/include/sys/types.h
which includes newlib/libc/include/sys/_stdint.h, which defines:
typedef __uint32_t uint32_t ;

Committed as obvious.

Attachment: slp-reduc-sad.c-no_uint32_t.txt
Description: Text document


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