diff options
author | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2016-11-17 09:48:34 +0000 |
---|---|---|
committer | Prathamesh Kulkarni <prathamesh3492@gcc.gnu.org> | 2016-11-17 09:48:34 +0000 |
commit | 6c99dcb51f55b0599203b8086f5c5d2f816f267b (patch) | |
tree | 8b354b9902e1b215e086ffc936c9da0554a4d27b /gcc | |
parent | 12faad0298b3cf3c9af2b3f5b44ebd48ee3ce3ae (diff) | |
download | gcc-6c99dcb51f55b0599203b8086f5c5d2f816f267b.zip gcc-6c99dcb51f55b0599203b8086f5c5d2f816f267b.tar.gz gcc-6c99dcb51f55b0599203b8086f5c5d2f816f267b.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/uninit-pred-8_a.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9545d9c..7928a491 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +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 diff --git a/gcc/testsuite/gcc.dg/uninit-pred-8_a.c b/gcc/testsuite/gcc.dg/uninit-pred-8_a.c index 1b7c472..c45fba0 100644 --- a/gcc/testsuite/gcc.dg/uninit-pred-8_a.c +++ b/gcc/testsuite/gcc.dg/uninit-pred-8_a.c @@ -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" } */ |