Commit 27282dad by Kyrylo Tkachov Committed by Kyrylo Tkachov

Add Cortex-A15 tuning to gcc.dg/uninit-pred-8_a.c

	PR tree-optimization/78319
	* gcc.dg/uninit-pred-8_a.c: Add -mtune=cortex-a15 for arm.
	Remove xfail.

From-SVN: r244372
parent 2da3add5
2017-01-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR tree-optimization/78319
* gcc.dg/uninit-pred-8_a.c: Add -mtune=cortex-a15 for arm.
Remove xfail.
2017-01-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com> 2017-01-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
PR target/79044 PR target/79044
......
/* { dg-do compile } */ /* { dg-do compile } */
/* { dg-options "-Wuninitialized -O2" } */ /* { dg-options "-Wuninitialized -O2" } */
/* Pick a particular tuning to pin down BRANCH_COST. */
/* { dg-additional-options "-mtune=cortex-a15" { target arm*-*-* } } */
int g; int g;
void bar(); void bar();
...@@ -16,9 +18,8 @@ int foo (int n, int l, int m, int r) ...@@ -16,9 +18,8 @@ int foo (int n, int l, int m, int r)
if (m) g++; if (m) g++;
else bar(); else bar();
/* marking this test as xfail on arm-none-eabi, see PR78319. */
if ( n || m || r || l) if ( n || m || r || l)
blah(v); /* { dg-bogus "uninitialized" "bogus warning" { xfail arm-none-eabi } } */ blah(v); /* { dg-bogus "uninitialized" "bogus warning" } */
if ( n ) if ( n )
blah(v); /* { dg-bogus "uninitialized" "bogus warning" } */ blah(v); /* { dg-bogus "uninitialized" "bogus warning" } */
......
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