- c5e2f34 Alloc redeclaration of typedefs within ExternCSystemHeaderDir's AND SystemHeaderDir's. by Steve Naroff · 17 years ago
- 8c1a9a8 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 17 years ago
- 8e7dafe Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 17 years ago
- 657aefe Fix http://llvm.org/bugs/show_bug.cgi?id=2161. by Steve Naroff · 17 years ago
- f962808 hoist a bunch of casting. by Chris Lattner · 17 years ago
- 0e77ba0 Add create methods for ObjCIvarDecl and ObjCInterfaceDecl by Chris Lattner · 17 years ago
- 8e25d86 switch the rest of the C decl classes to do their by Chris Lattner · 17 years ago
- bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from Sema/SemaDecl.cpp]
- c63e660 move the ASTContext argument to be first in the argument list of by Chris Lattner · 17 years ago
- a98e58d Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 17 years ago
- 9e151e1 switch the VarDecl allocation model to go through ASTContext. by Chris Lattner · 17 years ago
- 6c2b6eb start switching decls over to using an allocator controlled by ASTContext. by Chris Lattner · 17 years ago
- c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 17 years ago
- 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 17 years ago
- 440b456 Add fastcall/stdcall attribute support by Nate Begeman · 17 years ago
- aa8f976 Patch by Nuno Lopes: by Ted Kremenek · 17 years ago
- 98be494 remove the source location arguments to various target query methods. by Chris Lattner · 17 years ago
- 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
- 7b937ae The operand to the visibility attribute is required to be a quoted string, not a bare identifier. by Chris Lattner · 17 years ago
- 3465fb3 Only allow a "noreturn" attribute to be affixed to a FunctionDecl. by Ted Kremenek · 17 years ago
- ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 17 years ago
- 7e669b2 Add support for attribute(deprecated), patch by Nuno Lopes! by Chris Lattner · 17 years ago
- f5c93c1 Added parsing of attributes for functions. by Ted Kremenek · 17 years ago
- aecb383 Added support for attribute "noreturn." by Ted Kremenek · 17 years ago
- a73349d Fix PR2092 by making sure the sign of the enum value follows the by Chris Lattner · 17 years ago
- c81c814 convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 17 years ago
- c398f0b Handle __attribute__((annotate("string"))) by Nate Begeman · 17 years ago
- 7654914 Collect and build and process type attributes on pointers. For by Chris Lattner · 17 years ago
- 74788ba Correctly handle address space qualifiers in declspecs. This by Chris Lattner · 17 years ago
- 2070d80 rename some methods. by Chris Lattner · 17 years ago
- 212839c Use getKind() in HandleDeclAttribute instead of decoding the string inline. by Chris Lattner · 17 years ago
- f46699c Alternate address spaces work: by Chris Lattner · 17 years ago
- b7894b5 Turn handling of parameter attributes back on, fixing the ObjC breakage by Nate Begeman · 17 years ago
- 0e4c627 Revert this temporarily, it's breaking objc :/ by Nate Begeman · 17 years ago
- 6d20d03 Handle parameter attributes by Nate Begeman · 17 years ago
- 5280408 Fix PR2042. One remaining issue: we don't currently diagnose by Chris Lattner · 17 years ago
- 042c4e7 Better handling of the aligned attribute. by Anders Carlsson · 17 years ago
- e9ba323 Fix CheckEndOfDirective to diagnose lines that contain macros that expand to by Chris Lattner · 17 years ago
- 425a609 Fix typo by Anders Carlsson · 17 years ago
- ad14806 Handle packed attribute correctly by Anders Carlsson · 17 years ago
- 3fe0293 Don't call non-existent method... sorry about the spam; the fix seemed by Eli Friedman · 17 years ago
- a1321b6 Get rid of unused variable warning. by Eli Friedman · 17 years ago
- c5773c4 Split out incomplete arrays from VariableArrayType into by Eli Friedman · 17 years ago
- 9db1397 Part of clearing up the whole VariableArrayType + incomplete arrays by Eli Friedman · 17 years ago
- f78915f Get rid of AttributeList in the AST and use the new Attr class instead by Anders Carlsson · 17 years ago
- f963339 Get rid of outdated code that masks type errors. Fixes PR2036. by Eli Friedman · 17 years ago
- fabbc34 by Steve Naroff · 17 years ago
- 406db93 by Steve Naroff · 17 years ago
- 54174e8 by Steve Naroff · 17 years ago
- b43eaa5 by Steve Naroff · 17 years ago
- a312ce2 Improve diagnostic for illegal array initialization. by Eli Friedman · 17 years ago
- dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 17 years ago
- 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 17 years ago
- 61900f0 Handle top-level asm declarations. by Anders Carlsson · 17 years ago
- d62701b by Steve Naroff · 17 years ago
- e1e7985 inform astconsumer about tagdecls as they are defined. by Chris Lattner · 17 years ago
- a91d381 simplify some code. by Chris Lattner · 17 years ago
- ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 17 years ago
- 4c49a6c by Steve Naroff · 17 years ago
- 6c751c2 Add TODO marker so that it is easier to search. by Devang Patel · 17 years ago
- 4ca0867 Ignore __aligned__ with zero arguments in addition to __aligned__ with by Eli Friedman · 17 years ago
- b7b032e by Steve Naroff · 17 years ago
- 0493025 Use the canonical type when comparing array types so the comparison by Eli Friedman · 17 years ago
- 7dd0bd4 by Steve Naroff · 17 years ago
- 578edc6 by Steve Naroff · 17 years ago
- d6326c6 by Steve Naroff · 17 years ago
- a996033 by Steve Naroff · 17 years ago
- 0cbc215 Fix a bug recovering from broken code with a goto that Eli reported. by Chris Lattner · 17 years ago
- a49e1fa by Steve Naroff · 17 years ago
- ca10730 Sema::CheckInitializerTypes(). Start simpliying and cleaning up... by Steve Naroff · 17 years ago
- 9a75f8a by Steve Naroff · 17 years ago
- d3cd1e5 by Steve Naroff · 17 years ago
- 837618c by Steve Naroff · 17 years ago
- 21dd821 Fix build issue on cygwin, patch by Sam Bishop by Chris Lattner · 17 years ago
- adbbd0c by Steve Naroff · 17 years ago
- c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
- d0091aa by Steve Naroff · 17 years ago
- ffce4d5 by Steve Naroff · 17 years ago
- 4a74678 by Steve Naroff · 17 years ago
- a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
- 5cf216b Merge all the 'assignment' diagnostic code into one routine, decloning by Chris Lattner · 17 years ago
- bfe639e give better diagnostics for converting between function pointer and void*. by Chris Lattner · 17 years ago
- 529bd02 When promoting array to pointer for argument, don't lose type qualifiers. by Chris Lattner · 17 years ago
- 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
- abf5ad0 Fix the embarassing typo for real this time (- vs _), sorry about breaking the tests Steve. by Anders Carlsson · 17 years ago
- 0592cbe by Steve Naroff · 17 years ago
- 78aaae9 Fix an embarassing typo and add some very limited support for the aligned attribute. by Anders Carlsson · 17 years ago
- 6ede0ff Normalize attribute names if possible so we won't have to do two strcmps for every attribute. by Anders Carlsson · 17 years ago
- 54b263b fix broken assert. by Chris Lattner · 17 years ago
- 6e99978 Fix const propagation bug. by Chris Lattner · 17 years ago
- 4d83220 by Steve Naroff · 17 years ago
- 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
- 4d39148 split objc pieces of SemaDecl.cpp out into SemaDeclObjC.cpp by Chris Lattner · 17 years ago
- 33b7b06 simplify code now that isConstantExpr really does always return a loc. by Chris Lattner · 17 years ago
- 0105556 For @optional unimplemented methods do not issue the warning. by Fariborz Jahanian · 17 years ago
- afedd22 by Steve Naroff · 17 years ago
- 32150f3 by Steve Naroff · 17 years ago
- 2fdc374 by Steve Naroff · 17 years ago
- 32c3904 by Steve Naroff · 17 years ago
- 9bcb5fc by Steve Naroff · 17 years ago