| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | Complain about the application of a transparent_union attribute to a | Douglas Gregor | 2010-06-30 | 1 | -2/+3 | 
| *  | Implement dependent alignment attribute support. This is a bit gross given the | Chandler Carruth | 2010-06-25 | 1 | -12/+18 | 
| *  | Change Type::isFloatingType() to reflect the actual definition of a | Douglas Gregor | 2010-06-22 | 1 | -1/+1 | 
| *  | implement support for -finstrument-functions, patch by Nelson | Chris Lattner | 2010-06-22 | 1 | -1/+20 | 
| *  | IRGen for implementation of init-priority attribute. | Fariborz Jahanian | 2010-06-21 | 1 | -1/+1 | 
| *  | More Sema Check and a test case for init_priority attr. | Fariborz Jahanian | 2010-06-18 | 1 | -0/+15 | 
| *  | Implements Sema part of init_priority(priority) attribute | Fariborz Jahanian | 2010-06-18 | 1 | -0/+36 | 
| *  | Introduce Type::isIntegralOrEnumerationType(), to cover those places | Douglas Gregor | 2010-06-16 | 1 | -1/+1 | 
| *  | Roll back r104941. | John McCall | 2010-05-28 | 1 | -19/+3 | 
| *  | Add a new attribute on records, __attribute__((adl_invisible)), and define | John McCall | 2010-05-28 | 1 | -3/+19 | 
| *  | Add clang support for IBOutletCollection. | Ted Kremenek | 2010-05-19 | 1 | -1/+23 | 
| *  | Protect isIntegerConstantExpr from seeing type- or value-dependent | Douglas Gregor | 2010-05-18 | 1 | -11/+22 | 
| *  | Add support for Microsoft's __thiscall, from Steven Watanabe! | Douglas Gregor | 2010-05-18 | 1 | -0/+3 | 
| *  | Clean up some more uses of getAs<ObjCInterfaceType>() that Fariborz pointed | John McCall | 2010-05-17 | 1 | -3/+3 | 
| *  | Merged Elaborated and QualifiedName types. | Abramo Bagnara | 2010-05-11 | 1 | -1/+1 | 
| *  | Add calling convention related attributes to related declaration. Mark attrib... | Abramo Bagnara | 2010-04-30 | 1 | -16/+35 | 
| *  | Attribute noreturn is now put in declaration attributes. Fixed a double warni... | Abramo Bagnara | 2010-04-30 | 1 | -16/+14 | 
| *  | Rename BlockDecl::IsVariadic() to BlockDecl::isVariadic() to match the casing | Ted Kremenek | 2010-04-29 | 1 | -1/+1 | 
| *  | Keep track of the actual storage specifier written on a variable or | Douglas Gregor | 2010-04-19 | 1 | -1/+2 | 
| *  | Feed proper source-location information into Sema::LookupSingleResult, | Douglas Gregor | 2010-04-15 | 1 | -1/+4 | 
| *  | Twik to radar 7839485. Do not attach weak_import attribute to class | Fariborz Jahanian | 2010-04-13 | 1 | -3/+3 | 
| *  | Turn off warning about weak_import attribute | Fariborz Jahanian | 2010-04-13 | 1 | -3/+1 | 
| *  | Issue warning when 'weak_import' attribute is applied on a class only | Fariborz Jahanian | 2010-04-12 | 1 | -3/+8 | 
| *  | Support __attribute__((unused)) on types.  This suddenly started firing | John McCall | 2010-03-31 | 1 | -1/+2 | 
| *  | Add Support for 'warn_unused_result" attribute on | Fariborz Jahanian | 2010-03-30 | 1 | -5/+11 | 
| *  | Add comment indicating that we intentionally don't add the noreturn | Ted Kremenek | 2010-03-26 | 1 | -0/+3 | 
| *  | Ignore a more comprehensive set of gcc-special format attributes. | Duncan Sands | 2010-03-23 | 1 | -1/+2 | 
| *  | (re)implement PR6542, accepting and discarding the __gcc_tdiag__ | Chris Lattner | 2010-03-22 | 1 | -0/+8 | 
| *  | Perform access control for the implicit base and member destructor calls | John McCall | 2010-03-16 | 1 | -1/+7 | 
| *  | Remember declaration scope qualifiers in the AST.  Imposes no memory overhead | John McCall | 2010-03-15 | 1 | -0/+8 | 
| *  | 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 |