diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2012-05-15 22:19:08 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2012-05-15 22:19:08 +0000 |
commit | efc704cb036749efaf05bcd0557e61df075b3b16 (patch) | |
tree | b7064780eb225122cacdfbf7278efc999cc6feda | |
parent | ae10b5747364804809ed196a7bf41dbb3de83fdc (diff) | |
download | gcc-efc704cb036749efaf05bcd0557e61df075b3b16.zip gcc-efc704cb036749efaf05bcd0557e61df075b3b16.tar.gz gcc-efc704cb036749efaf05bcd0557e61df075b3b16.tar.bz2 |
re PR c/11586 (after call sigaction, system() return wrong status)
2012-05-15 Paolo Carlini <paolo.carlini@oracle.com>
* g++.old-deja/g++.pt/crash10.C: Adjust post PR11586.
From-SVN: r187559
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/crash10.C | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f9bd64d..fdf43a9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2012-05-15 Paolo Carlini <paolo.carlini@oracle.com> + + * g++.old-deja/g++.pt/crash10.C: Adjust post PR11586. + 2012-05-15 Jakub Jelinek <jakub@redhat.com> PR target/53358 diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash10.C b/gcc/testsuite/g++.old-deja/g++.pt/crash10.C index 2f785b4..5e87876 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/crash10.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/crash10.C @@ -3,7 +3,7 @@ template<int M, int N> class GCD { public: - enum { val = (N == 0) ? M : GCD<N, M % N>::val }; // { dg-warning "division" "division" } + enum { val = (N == 0) ? M : GCD<N, M % N>::val }; // { dg-error "constant expression" "valid" { target *-*-* } 6 } // { dg-message "template argument" "valid" { target *-*-* } 6 } }; |