Commit 6c99dcb5 by Prathamesh Kulkarni Committed by Prathamesh Kulkarni

re PR tree-optimization/78319 (PASS->FAIL: gcc.dg/uninit-pred-8_a.c bogus…

re PR tree-optimization/78319 (PASS->FAIL: gcc.dg/uninit-pred-8_a.c bogus warning (test for bogus messages, line 20))

2016-11-17  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>

	PR tree-optimization/78319

testsuite/
	* gcc.dg/uninit-pred-8_a.c (foo): Mark dg-bogus test to xfail on
	arm-none-eabi.

From-SVN: r242540
parent 12faad02
2016-11-17 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
PR tree-optimization/78319
* gcc.dg/uninit-pred-8_a.c (foo): Mark dg-bogus test to xfail on
arm-none-eabi.
2016-11-17 Richard Biener <rguenther@suse.de>
PR tree-optimization/78306
......
......@@ -16,8 +16,9 @@ int foo (int n, int l, int m, int r)
if (m) g++;
else bar();
/* marking this test as xfail on arm-none-eabi, see PR78319. */
if ( n || m || r || l)
blah(v); /* { dg-bogus "uninitialized" "bogus warning" } */
blah(v); /* { dg-bogus "uninitialized" "bogus warning" { xfail arm-none-eabi } } */
if ( n )
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