* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / const-high-part.c
blob95e2059704e803f624b43d52ea6a4a6ba00dd20b
1 /* { dg-require-effective-target int32plus } */
2 /* { dg-require-effective-target size32plus } */
4 char *buf;
5 int buflen;
7 inline int
8 sub (int length)
10 if (length <= buflen)
11 buf[length] = '\0';
12 return 0;
15 int
16 sub2 (void)
18 return sub (0x7fffffff);