Commit efa165cd by DJ Delorie Committed by DJ Delorie

* gcc.dg/torture/pr66345.c: Fix assumption about size_t type.

From-SVN: r224924
parent e25d2617
2015-06-08 DJ Delorie <dj@redhat.com>
* gcc.dg/torture/pr66345.c: Fix assumption about size_t type.
2015-06-24 Alan Lawrence <alan.lawrence@arm.com>
* gcc.target/aarch64/mgeneral-regs_3.c: New.
......
/* { dg-do compile } */
extern int snprintf (char *, unsigned long, const char *, ...);
#ifdef __SIZE_TYPE__
typedef __SIZE_TYPE__ size_t;
#else
typedef unsigned int size_t;
#endif
extern int snprintf (char *, size_t, const char *, ...);
const char a[] = "";
int b;
void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment