Commit 3d3e20df by Richard Guenther Committed by Richard Biener

re PR tree-optimization/35833 (Wrong code generated with -ftree-vrp)

2008-04-05  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/35833
	* gcc.dg/torture/pr35833.c: New testcase.

From-SVN: r133941
parent 9fb7564e
2008-04-05 Richard Guenther <rguenther@suse.de>
PR tree-optimization/35833
* gcc.dg/torture/pr35833.c: New testcase.
2008-04-04 Naveen.H.S <naveen.hs@kpitcummins.com>
* gcc.target/sh/sh2a-band.c: New test.
/* { dg-do run } */
/* { dg-options "-ftree-vrp" } */
struct S {struct S *field;};
struct S True, False, Z;
static inline int f(void) {return 1;}
static inline int g(struct S **obj) {
return f() && *obj == &Z;
}
struct S **h(struct S **x) {
if (x)
return g(x) ? &True.field : &False.field;
else
return &True.field;
}
extern void abort (void);
int main()
{
if (h(&False.field) != &False.field)
abort ();
return 0;
}
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