b859a98d15
* gcc.c-torture/compile/20010114-1.c: New test. * gcc.c-torture/compile/20010114-1.x: Xfail. * gcc.c-torture/compile/20010114-2.c: New test. * gcc.c-torture/execute/20010114-1.c: New test. * gcc.dg/trunc-1.c: New test. * gcc.dg/uninit-B.c: New test. From-SVN: r39009
16 lines
254 B
C
16 lines
254 B
C
/* Origin: PR c/675 from aj@suse.de. */
|
|
/* { dg-do compile } */
|
|
/* { dg-options "-Wall" } */
|
|
|
|
#include <stddef.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
size_t len;
|
|
|
|
len = ~(sizeof (size_t) - 1); /* { dg-bogus "truncated" "bogus truncation warning" } */
|
|
|
|
return 0;
|
|
}
|