mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 05:20:26 +08:00
init-2.mm: Tweak errors.
* obj-c++.dg/tls/init-2.mm: Tweak errors. From-SVN: r192348
This commit is contained in:
parent
444d528831
commit
d131a4afce
@ -1,3 +1,7 @@
|
||||
2012-10-11 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* obj-c++.dg/tls/init-2.mm: Tweak errors.
|
||||
|
||||
2012-10-10 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/43663
|
||||
|
@ -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" } */
|
||||
|
Loading…
x
Reference in New Issue
Block a user