From: aoliva Date: Thu, 28 Jun 2012 07:41:02 +0000 (+0000) Subject: PR debug/53671 X-Git-Tag: upstream/4.9.2~11904 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2793927e571d2447e042dc1cc0b0ed5c16ee68d6;p=platform%2Fupstream%2Flinaro-gcc.git PR debug/53671 PR debug/49888 * gcc.dg/guality/pr49888.c: Account for the possibility that the variable is optimized out at the first test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189038 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4217e6a..4b710e2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2012-06-28 Alexandre Oliva + + PR debug/53671 + PR debug/49888 + * gcc.dg/guality/pr49888.c: Account for the possibility that + the variable is optimized out at the first test. + 2012-06-27 Jason Merrill * g++.dg/cpp0x/override2.C: Adjust. diff --git a/gcc/testsuite/gcc.dg/guality/pr49888.c b/gcc/testsuite/gcc.dg/guality/pr49888.c index 3d1e653..a0e26cf 100644 --- a/gcc/testsuite/gcc.dg/guality/pr49888.c +++ b/gcc/testsuite/gcc.dg/guality/pr49888.c @@ -9,12 +9,13 @@ f (int *p) { int c = *p; v = c; - *p = 1; /* { dg-final { gdb-test 12 "c" "0" } } */ + *p = 1; /* { dg-final { gdb-test 12 "!!c" "0" } } */ /* c may very well be optimized out at this point, so we test !c, which will evaluate to the expected value. We just want to make sure it doesn't remain bound to *p as it did before, in which - case !c would evaluate to 0. */ - v = 0; /* { dg-final { gdb-test 17 "!c" "1" } } */ + case !c would evaluate to 0. *p may also be regarded as aliasing + register saves, thus the !!c above. */ + v = 0; /* { dg-final { gdb-test 18 "!c" "1" } } */ } int main ()