diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ebc051df1e27..47161840bde1 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2012-10-11 Uros Bizjak + + * obj-c++.dg/tls/init-2.mm: Tweak errors. + 2012-10-10 Paolo Carlini PR c++/43663 diff --git a/gcc/testsuite/obj-c++.dg/tls/init-2.mm b/gcc/testsuite/obj-c++.dg/tls/init-2.mm index dc886ba0107a..327c309e9858 100644 --- a/gcc/testsuite/obj-c++.dg/tls/init-2.mm +++ b/gcc/testsuite/obj-c++.dg/tls/init-2.mm @@ -2,13 +2,13 @@ /* { dg-require-effective-target tls } */ extern __thread int i; -__thread int *p = &i; /* { dg-error "dynamically initialized" } */ +__thread int *p = &i; /* { dg-error "dynamic initialization" } */ extern int f(); -__thread int j = f(); /* { dg-error "dynamically initialized" } */ +__thread int j = f(); /* { dg-error "dynamic initialization" } */ struct S { S(); }; -__thread S s; /* { dg-error "" } two errors here */ +__thread S s; /* { dg-error "dynamic initialization" } */