Commit acb78844 by Richard Guenther Committed by Richard Biener

ssa-pta-fn-1.c: Fix invalid testcase again.

2009-07-08  Richard Guenther  <rguenther@suse.de>

	* gcc.dg/torture/ssa-pta-fn-1.c: Fix invalid testcase again.

From-SVN: r149368
parent 9cb225b9
2009-07-08 Richard Guenther <rguenther@suse.de>
* gcc.dg/torture/ssa-pta-fn-1.c: Fix invalid testcase again.
2009-07-08 Richard Guenther <rguenther@suse.de>
* gcc.dg/torture/ssa-pta-fn-1.c: Fix invalid testcase.
2009-07-08 Paul Thomas <pault@gcc.gnu.org>
......
......@@ -4,13 +4,13 @@
extern void abort (void);
int *glob;
volatile int dummy;
int dummy;
int * __attribute__((noinline,const))
foo_const(int *p) { return p; }
int * __attribute__((noinline,pure))
foo_pure(int *p) { dummy; return p; }
foo_pure(int *p) { return p + dummy; }
int * __attribute__((noinline))
foo_normal(int *p) { glob = p; return p; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment