re PR testsuite/67203 (FAIL: g++.dg/tree-ssa/pr61034.C -std=gnu++11 scan-tree-dump-times fre2 "free" 10)
2015-11-26 Richard Biener <rguenther@suse.de> PR testsuite/67203 * g++.dg/tree-ssa/pr61034.C: Make expected optimization result dependent on PUSH_ARGS_REVERSED. Drop optimization level and also monitor final optimization result. From-SVN: r230940
This commit is contained in:
parent
9d465067af
commit
d083907f1f
2 changed files with 16 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2015-11-26 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR testsuite/67203
|
||||
* g++.dg/tree-ssa/pr61034.C: Make expected optimization result
|
||||
dependent on PUSH_ARGS_REVERSED. Drop optimization level and
|
||||
also monitor final optimization result.
|
||||
|
||||
2015-11-26 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR rtl-optimization/68249
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// { dg-do compile }
|
||||
// { dg-options "-O3 -fdump-tree-fre2" }
|
||||
// { dg-options "-O2 -fdump-tree-fre2 -fdump-tree-optimized" }
|
||||
|
||||
#define assume(x) if(!(x))__builtin_unreachable()
|
||||
|
||||
|
@ -43,5 +43,12 @@ bool f(I a, I b, I c, I d) {
|
|||
// This works only if everything is inlined into 'f'.
|
||||
|
||||
// { dg-final { scan-tree-dump-times ";; Function" 1 "fre2" } }
|
||||
// { dg-final { scan-tree-dump-times "free" 10 "fre2" } }
|
||||
// { dg-final { scan-tree-dump-times "unreachable" 11 "fre2" } }
|
||||
|
||||
// Note that depending on PUSH_ARGS_REVERSED we are presented with
|
||||
// a different initial CFG and thus the final outcome is different
|
||||
|
||||
// { dg-final { scan-tree-dump-times "free" 10 "fre2" { target x86_64-*-* i?86-*-* } } }
|
||||
// { dg-final { scan-tree-dump-times "free" 3 "optimized" { target x86_64-*-* i?86-*-* } } }
|
||||
// { dg-final { scan-tree-dump-times "free" 14 "fre2" { target aarch64-*-* ia64-*-* arm-*-* hppa*-*-* sparc*-*-* powerpc*-*-* } } }
|
||||
// { dg-final { scan-tree-dump-times "free" 4 "optimized" { target aarch64-*-* ia64-*-* arm-*-* hppa*-*-* sparc*-*-* powerpc*-*-* } } }
|
||||
|
|
Loading…
Add table
Reference in a new issue