Commit 00f64309 by Richard Biener Committed by Richard Biener

reassoc-19.c: Adjust.

2012-12-18  Richard Biener  <rguenther@suse.de>

	* gcc.dg/tree-ssa/reassoc-19.c: Adjust.

From-SVN: r194579
parent 8b679c9b
2012-12-18 Richard Biener <rguenther@suse.de>
* gcc.dg/tree-ssa/reassoc-19.c: Adjust.
2012-12-18 Richard Biener <rguenther@suse.de>
PR tree-optimization/55555
* gcc.dg/torture/pr55555.c: New testcase.
* gcc.dg/vect/vect-iv-11.c: Adjust.
......
/* { dg-do compile } */
/* { dg-options "-Os -fdump-tree-reassoc2" } */
/* { dg-options "-Os -fdump-tree-optimized" } */
/* Slightly changed testcase from PR middle-end/40815. */
void bar(char*, char*, int);
......@@ -8,14 +8,15 @@ void foo(char* left, char* rite, int element)
while (left <= rite)
{
/* This should expand into
D.zzzz = D.zzzz - D.xxxx;
and NOT to
D.D.yyyy = -D.xxxx; D.zzzz = D.zzzz + D.yyyy; */
_7 = (sizetype) element_6(D);
_8 = -_7;
rite_9 = rite_1 + _8; */
rite -= element;
bar(left, rite, element);
}
}
/* There should be no " + " in the dump. */
/* { dg-final { scan-tree-dump-times " \\\+ " 0 "reassoc2" } } */
/* { dg-final { cleanup-tree-dump "reassoc2" } } */
/* { dg-final { scan-tree-dump-times "= \\\(sizetype\\\) element" 1 "optimized" } } */
/* { dg-final { scan-tree-dump-times "= -" 1 "optimized" } } */
/* { dg-final { scan-tree-dump-times " \\\+ " 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
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