blob: e184ebc82af0b034020ca6cbdb995e2031b1006f [file] [log] [blame]
Hans Wennborga1c59652012-06-23 13:16:37 +00001// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -verify -fsyntax-only %s
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00002
3#if !__has_attribute(tls_model)
4#error "Should support tls_model attribute"
5#endif
6
7int f() __attribute((tls_model("global-dynamic"))); // expected-error {{'tls_model' attribute only applies to thread-local variables}}
8
9int x __attribute((tls_model("global-dynamic"))); // expected-error {{'tls_model' attribute only applies to thread-local variables}}
10static __thread int y __attribute((tls_model("global-dynamic"))); // no-warning
11
12static __thread int y __attribute((tls_model("local", "dynamic"))); // expected-error {{attribute takes one argument}}
13static __thread int y __attribute((tls_model(123))); // expected-error {{argument to tls_model attribute was not a string literal}}
14static __thread int y __attribute((tls_model("foobar"))); // expected-error {{tls_model must be "global-dynamic", "local-dynamic", "initial-exec" or "local-exec"}}