blob: c4f92f1f80de7d76cf79da7b822ba05b7495ff72 [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
Aaron Ballmanbaec7782013-07-23 19:30:11 +000012static __thread int y __attribute((tls_model("local", "dynamic"))); // expected-error {{'tls_model' attribute takes one argument}}
Aaron Ballman3cd6feb2013-07-30 01:31:03 +000013static __thread int y __attribute((tls_model(123))); // expected-error {{'tls_model' attribute requires a string}}
Hans Wennborg5e2d5de2012-06-23 11:51:46 +000014static __thread int y __attribute((tls_model("foobar"))); // expected-error {{tls_model must be "global-dynamic", "local-dynamic", "initial-exec" or "local-exec"}}