Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | err_attribute_not_string has been subsumed by err_attribute_argument_type. | Aaron Ballman | 2013-07-30 | 1 | -1/+1 |
| | | | | llvm-svn: 187400 | ||||
* | Added the attribute name to the err_attribute_wrong_number_arguments ↵ | Aaron Ballman | 2013-07-23 | 1 | -1/+1 |
| | | | | | | | | diagnostic for clarity; updated almost all of the affected test cases. Thanks to Fariborz Jahanian for the suggestion! llvm-svn: 186980 | ||||
* | Add triple to test/Sema/attr-tls_model.c | Hans Wennborg | 2012-06-23 | 1 | -1/+1 |
| | | | | | | Not all targets support __thread variables. llvm-svn: 159080 | ||||
* | Support the tls_model attribute (PR9788) | Hans Wennborg | 2012-06-23 | 1 | -0/+14 |
This adds support for the tls_model attribute. This allows the user to choose a TLS model that is better than what LLVM would select by default. For example, a variable might be declared as: __thread int x __attribute__((tls_model("initial-exec"))); if it will not be used in a shared library that is dlopen'ed. This depends on LLVM r159077. llvm-svn: 159078 |