| Commit message (Expand) | Author | Age | Files | Lines |
* | PR14922: when printing an attribute, use the real syntax of the attribute (GN... | Michael Han | 2013-01-24 | 1 | -0/+11 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -1/+1 |
* | Add support for "type safety" attributes that allow checking that 'void *' | Dmitri Gribenko | 2012-08-17 | 1 | -0/+2 |
* | Drop the ASTContext.h include from Stmt.h and fix up transitive users. | Benjamin Kramer | 2012-07-04 | 1 | -0/+1 |
* | Handle C++11 attribute namespaces automatically. | Alexis Hunt | 2012-06-18 | 1 | -6/+12 |
* | Add -Wimplicit-fallthrough warning flag, which warns on fallthrough between | Richard Smith | 2012-05-03 | 1 | -1/+8 |
* | Replace the StringSwitch in AttributeList::getKind() with a | Douglas Gregor | 2012-05-02 | 1 | -3/+3 |
* | Introduce the notion of 'ignored' attributes, so that all attributes | Douglas Gregor | 2012-05-02 | 1 | -2/+0 |
* | Introduce the notion of an attribute that has no direct representation | Douglas Gregor | 2012-05-02 | 1 | -11/+0 |
* | Implement the alternate spellings of attributes aligned (as "align") | Douglas Gregor | 2012-05-02 | 1 | -2/+0 |
* | Revert my optimization to AttributeList::getKind() in r155987; | Douglas Gregor | 2012-05-02 | 1 | -31/+19 |
* | Replace the StringSwitch in AttributeList::getKind(const | Douglas Gregor | 2012-05-02 | 1 | -19/+31 |
* | Refactor Clang sema attribute handling. | Michael Han | 2012-03-07 | 1 | -122/+10 |
* | Accept __has_feature(__feature__) as a synonym for __has_feature(feature) (and | Richard Smith | 2012-02-25 | 1 | -1/+2 |
* | The following patch adds __attribute__((no_address_safety_analysis)) which wi... | Kostya Serebryany | 2012-01-24 | 1 | -0/+1 |
* | After further discussion, rename attribute 'objc_disable_automatic_synthesis'... | Ted Kremenek | 2012-01-05 | 1 | -1/+1 |
* | Rename attribute 'objc_suppress_autosynthesis' to 'objc_disable_automatic_syn... | Ted Kremenek | 2012-01-04 | 1 | -1/+1 |
* | objc: introduce objc_suppress_autosynthesis class | Fariborz Jahanian | 2012-01-03 | 1 | -0/+1 |
* | Propagate __attribute__((returns_twice)) from C to IL. | Rafael Espindola | 2011-10-03 | 1 | -1/+1 |
* | Add explicit attributes to mark functions as having had their | John McCall | 2011-09-30 | 1 | -0/+2 |
* | Add an ns_bridged attribute, used to specify that a | John McCall | 2011-09-29 | 1 | -0/+1 |
* | Added basic parsing for all remaining attributes, thread safety | Caitlin Sadowski | 2011-07-28 | 1 | -0/+13 |
* | Added parsing for guarded_var, pt_guarded_var, lockable, | Caitlin Sadowski | 2011-07-28 | 1 | -0/+5 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -1/+1 |
* | Document the existing objc_precise_lifetime attribute. | John McCall | 2011-07-22 | 1 | -0/+1 |
* | objc-arc: Support objc_arc_weak_unavailable on those | Fariborz Jahanian | 2011-07-06 | 1 | -0/+1 |
* | Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ... | Argyrios Kyrtzidis | 2011-06-24 | 1 | -1/+1 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -0/+5 |
* | Add ms_struct attribute on record typee | Fariborz Jahanian | 2011-04-26 | 1 | -0/+1 |
* | Implement ARM pcs attribute. Basically it's another way of calling convention... | Anton Korobeynikov | 2011-04-14 | 1 | -0/+1 |
* | Insomniac refactoring: change how the parser allocates attributes so that | John McCall | 2011-03-24 | 1 | -33/+76 |
* | Implement a new 'availability' attribute, that allows one to specify | Douglas Gregor | 2011-03-23 | 1 | -0/+19 |
* | Add support for language-specific address spaces. On top of that, | Peter Collingbourne | 2011-03-18 | 1 | -0/+1 |
* | Provide an attribute, objc_method_family, to allow the inferred family | John McCall | 2011-03-02 | 1 | -0/+1 |
* | accept and ignore a few things for better OpenBSD compatibility, | Chris Lattner | 2011-02-18 | 1 | -0/+1 |
* | OpenCL: add support for __kernel, kernel keywords and EXTENSION, | Peter Collingbourne | 2011-02-14 | 1 | -0/+1 |
* | Revert r124217 because it didn't catch the actual error case it was trying to | Jeffrey Yasskin | 2011-01-27 | 1 | -1/+0 |
* | Add an attribute to forbid temporary instances of a type. This allows class | Jeffrey Yasskin | 2011-01-25 | 1 | -0/+1 |
* | Add the ns_consumes_self, ns_consumed, cf_consumed, and ns_returns_autoreleased | John McCall | 2011-01-25 | 1 | -0/+4 |
* | Get rid of [[hiding]], [[override]] and [[base_check]]. | Anders Carlsson | 2011-01-23 | 1 | -2/+0 |
* | Get rid of the [[final]] C++0x attribute. | Anders Carlsson | 2011-01-23 | 1 | -1/+0 |
* | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall | 2010-12-24 | 1 | -2/+2 |
* | Add support for the Microsoft uuid attribute: | Francois Pichet | 2010-12-19 | 1 | -0/+1 |
* | Basic, Sema: add support for CUDA launch_bounds attribute | Peter Collingbourne | 2010-12-12 | 1 | -0/+1 |
* | Add support for the common and nocommon attributes. | Eric Christopher | 2010-12-02 | 1 | -0/+2 |
* | Basic, Sema: add support for CUDA location attributes | Peter Collingbourne | 2010-12-01 | 1 | -0/+5 |
* | Front-end support for __attribute__((may_alias)). This is not | Dan Gohman | 2010-11-17 | 1 | -1/+1 |
* | Add support for "neon_vector_type" and "neon_polyvector_type" attributes | Bob Wilson | 2010-11-16 | 1 | -0/+2 |
* | Region-allocate all AttributeList objects from a factory object instead of ma... | Ted Kremenek | 2010-11-10 | 1 | -17/+6 |
* | fix http://llvm.org/PR8371 in the straightforward way, also adding a comment | Gabor Greif | 2010-10-15 | 1 | -0/+1 |