| Commit message (Expand) | Author | Age | Files | Lines |
* | Allow __attribute__((unused)) to be applied to ObjC ivars. | Ted Kremenek | 2010-02-25 | 1 | -1/+1 |
* | Add support for the weakref attribute. We still produce "alias weak" as llvm-... | Rafael Espindola | 2010-02-23 | 1 | -10/+93 |
* | Clang really intends to reject attribute 'warn_unused_result' on Objective-C ... | Ted Kremenek | 2010-02-21 | 1 | -1/+1 |
* | Change the behavior of ibaction attributes to be attached to methods, not ivars. | Ted Kremenek | 2010-02-18 | 1 | -16/+25 |
* | Add 'ns_returns_not_retained' and 'cf_returns_not_retained' attributes to | Ted Kremenek | 2010-02-18 | 1 | -0/+8 |
* | Add IBAction attribute to keep the IBOutlet attribute company. | Ted Kremenek | 2010-02-17 | 1 | -7/+18 |
* | dllimport and dllexport are declspec attributes, too. They're also | Charles Davis | 2010-02-16 | 1 | -80/+7 |
* | Use the allocator associated with ASTContext to allocate the args | Ted Kremenek | 2010-02-11 | 1 | -1/+1 |
* | Remove use of 'std::string' from Attr objects, using instead a byte | Ted Kremenek | 2010-02-11 | 1 | -5/+5 |
* | Standardize the parsing of function type attributes in a way that | John McCall | 2010-02-05 | 1 | -118/+11 |
* | Testing, 1, 2, 3... | Charles Davis | 2010-02-05 | 1 | -2/+4 |
* | Allow calling convention attributes to apply to types. Patch by Chip Davis! | John McCall | 2010-02-04 | 1 | -0/+16 |
* | Implement access-check delays for out-of-line member definitions | John McCall | 2010-01-27 | 1 | -22/+45 |
* | Correctly treat 64 bit integers specified via the mode attribute as the 'long' | Chandler Carruth | 2010-01-26 | 1 | -2/+8 |
* | Simplify code with StringRef. | Benjamin Kramer | 2010-01-23 | 1 | -6/+5 |
* | implement PR6007, diagnosing invalid attribute((section)) | Chris Lattner | 2010-01-12 | 1 | -5/+10 |
* | Generalize target weirdness handling having proper layering in mind: | Anton Korobeynikov | 2010-01-10 | 1 | -1/+5 |
* | Get rid of FixedWidthIntType, as suggested by Chris and Eli. | Anders Carlsson | 2009-12-29 | 1 | -1/+4 |
* | warn when attribute warn_unused_result is applied to void functions. | Nuno Lopes | 2009-12-22 | 1 | -1/+6 |
* | fix PR4010: add support for the warn_unused_result for function pointers | Nuno Lopes | 2009-12-20 | 1 | -4/+3 |
* | This patch should fix PR2461. It allows clang to apply the noreturn | Mike Stump | 2009-12-15 | 1 | -1/+2 |
* | Add support for the cleanup attribute for C++; we don't have to copy | Mike Stump | 2009-12-09 | 1 | -4/+0 |
* | DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia... | John McCall | 2009-12-07 | 1 | -4/+4 |
* | Fix for PR5650 - Revised vector_size attribute handling to be done earlier be... | John Thompson | 2009-12-04 | 1 | -86/+1 |
* | Use StringRef in Attr constructors. | Benjamin Kramer | 2009-11-30 | 1 | -10/+4 |
* | Parse C++ member check attributes - base_check, hiding, and override. | Alexis Hunt | 2009-11-25 | 1 | -43/+125 |
* | Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and | John McCall | 2009-11-24 | 1 | -3/+4 |
* | Added rudimentary C++0x attribute support. | Alexis Hunt | 2009-11-21 | 1 | -3/+45 |
* | Start support of weak_import objective-c classes. | Fariborz Jahanian | 2009-11-17 | 1 | -1/+1 |
* | Adjust format attribute index for implicit object arguments. Fixes PR5521. | Sebastian Redl | 2009-11-17 | 1 | -1/+8 |
* | Add support for cdecl attribute. (As far as I know, it doesn't affect CodeGen | Eli Friedman | 2009-11-09 | 1 | -0/+33 |
* | Diagnose the use of 'fastcall' on functions without prototypes or with | John McCall | 2009-11-04 | 1 | -0/+18 |
* | Change our basic strategy for avoiding deprecation warnings when the decl use | John McCall | 2009-11-04 | 1 | -0/+59 |
* | Rename FunctionDecl::isInline/setInline to | Douglas Gregor | 2009-10-27 | 1 | -3/+3 |
* | Preserve type source information in TypedefDecls. Preserve it across | John McCall | 2009-10-24 | 1 | -6/+11 |
* | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar | 2009-10-18 | 1 | -3/+3 |
* | Simplify HandleModeAttr. | Daniel Dunbar | 2009-10-18 | 1 | -11/+8 |
* | Simplify HandleFormatAttr. | Daniel Dunbar | 2009-10-18 | 1 | -35/+41 |
* | Fix for PR 5181. | Edward O'Callaghan | 2009-10-13 | 1 | -1/+4 |
* | Refactor the LookupResult API to simplify most common operations. Require us... | John McCall | 2009-10-09 | 1 | -2/+3 |
* | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall | 2009-09-21 | 1 | -7/+7 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -9/+8 |
* | reduce indentation. | Chris Lattner | 2009-09-08 | 1 | -17/+16 |
* | Regularize the case and sort. | Mike Stump | 2009-08-26 | 1 | -6/+6 |
* | Handle the implicit 'this' parameter for format attributes. | Anders Carlsson | 2009-08-25 | 1 | -3/+12 |
* | Enhance diagnostics concerning attribute 'ns_returns_retained' and 'cf_return... | Ted Kremenek | 2009-08-19 | 1 | -4/+6 |
* | Introduce DeclaratorDecl and pass DeclaratorInfo through the Decl/Sema interf... | Argyrios Kyrtzidis | 2009-08-19 | 1 | -2/+3 |
* | Change handling of attribute 'malloc' to only accept the attribute on function | Ted Kremenek | 2009-08-15 | 1 | -14/+7 |
* | Per Eli Friedman's feedback, handle attribute 'malloc' being applied to | Ted Kremenek | 2009-08-14 | 1 | -5/+5 |
* | Use 'dyn_cast' instead of a check for a function declaration followed by a | Ted Kremenek | 2009-08-14 | 1 | -2/+3 |