URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [ipa-pta-2.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-fipa-pta" } */ int **x; static int __attribute__((noinline,noclone)) foo (int **p) { int a = 1; **p = 0; *x = &a; return **p; } extern void abort (void); int main() { int b; int *p = &b; x = &p; if (foo (&p) != 1) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log