Displaying 1 result from an estimated 1 matches for "pr26719".
Did you mean:
pr26718
2009 Jul 25
2
[LLVMdev] GCC DejaGNU regressions
...bbed...
Name: nonnull-3.c
Type: application/octet-stream
Size: 5404 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090724/6b1e5042/attachment.obj>
-------------- next part --------------
Here's another test that aborts at runtime (it's gcc.dg/pr26719.c):
/* { dg-do compile } */
/* { dg-do run } */
/* { dg-options "-O2" } */
void abort (void);
int table[32][256];
int main(void)
{
int i, j;
for (i = 0; i < 32; i++)
for (j = 0; j < 256; j++)
table[i][j] = ((signed char)j) * i;
if (table[9][132] != -1116)...