mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-22 14:10:06 +08:00
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
This commit is contained in:
parent
ae10b57473
commit
efc704cb03
@ -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
|
||||
|
@ -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 }
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user