URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr38984.c] - Rev 758
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fno-delete-null-pointer-checks -fdump-tree-optimized" } * */ int f(int *p) { int a = *p; int *null = 0; *null = 5; return *p == a; } /* { dg-final { scan-tree-dump-times "\\\*p" 2 "optimized" } } */ /* { dg-final { scan-tree-dump-not "return 1" "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */
Go to most recent revision | Compare with Previous | Blame | View Log