URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pta-ptrarith-1.c] - Rev 424
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-fdump-tree-alias" } */ /* { dg-skip-if "" { *-*-* } { "-O0" } { "" } } */ struct Foo { int *p; }; void __attribute__((noinline)) foo (void *p) { struct Foo *f = (struct Foo *)p - 1; *f->p = 0; } int bar (void) { struct Foo f; int i = 1; f.p = &i; foo (&f + 1); return i; } extern void abort (void); int main() { if (bar () != 0) abort (); return 0; } /* { dg-final { scan-tree-dump "ESCAPED = { ESCAPED NONLOCAL f .* i }" "alias" } } */ /* { dg-final { cleanup-tree-dump "alias" } } */
Go to most recent revision | Compare with Previous | Blame | View Log