- 909cd26 Use DeclStmt::decl_iterator instead of walking the getNextDeclarator() chain. by Ted Kremenek · 17 years ago
- 159346a ParseAST now conditionally deletes the passed ASTConsumer. by Ted Kremenek · 17 years ago
- 02408c6 Sema::ActOnEnumBody(): handle nested enum redefinitions. by Steve Naroff · 17 years ago
- 356b63a attribute "unused" also applies to functions. by Ted Kremenek · 17 years ago
- 54b5274 Fix <rdar://problem/6125909>. by Ted Kremenek · 17 years ago
- a735ad8 Implement GNU asm-label extension support in CodeGen. This fixes by Daniel Dunbar · 17 years ago
- 914701e Move AsmLabel into Declarator instead of just a parameter to ActOnDeclarator. by Daniel Dunbar · 17 years ago
- a80f874 Add more Parser/Sema support for GCC asm-label extension. by Daniel Dunbar · 17 years ago
- 1e76ce6 Fix several issues in checking of address-of expressions. by Daniel Dunbar · 17 years ago
- 0ffb125 Add CodeGen support for indirect goto. by Daniel Dunbar · 17 years ago
- c63a1f2 by Chris Lattner · 17 years ago
- 39caa08 Wherever a type is used/returned from the Action module, use TypeTy instead of DeclTy or void. by Argyrios Kyrtzidis · 17 years ago
- b53c784 Make the default constructor of IdentifierResolver::iterator public. by Argyrios Kyrtzidis · 17 years ago
- 3068ae0 Support __attribute__(({con,de}structor)) in Parse & Sema by Daniel Dunbar · 17 years ago
- c36d405 make "call foo.dump()" and "call foo->dump()" work in GDB, by Chris Lattner · 17 years ago
- 1b63eef remove two uses of getCanonicalType I missed. by Chris Lattner · 17 years ago
- b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 17 years ago
- 28be73f convert more code to use ASTContext to get canonical types instead by Chris Lattner · 17 years ago
- 717250a remove a helper method. by Chris Lattner · 17 years ago
- 611b2ec fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 17 years ago
- 06036d3 Pull protocol resolution of out ActOnStartClassInterface, this is also the by Chris Lattner · 17 years ago
- 6bd6d0b refactor protocol resolution out of ActOnStartCategoryInterface by Chris Lattner · 17 years ago
- e13b959 pull protocol resolution out into ActOnStartProtocolInterface. by Chris Lattner · 17 years ago
- eacc392 simplify some code. by Chris Lattner · 17 years ago
- e281c86 remove duplicate error message. by Chris Lattner · 17 years ago
- ae4da61 make DeclSpec manage its own protocol qualifier list memory instead of having by Chris Lattner · 17 years ago
- 62f5f7f fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 17 years ago
- 02a6514 GCC supports the complex conjugate operator (an extension) on complex int by Chris Lattner · 17 years ago
- 834a72a Fix rdar://6095136, various crashes with incomplete enum types. by Chris Lattner · 17 years ago
- 05faf17 move a method. by Chris Lattner · 17 years ago
- 32b62b6 Fix a couple bugs in aggregate cast processing: 1) fix precedecence by Chris Lattner · 17 years ago
- 9801c8b Format string errors should underling the format string, not the function name. by Ted Kremenek · 17 years ago
- bb280a4 make sizeof/alignof diagnostics highlight their operand with a sourcerange. by Chris Lattner · 17 years ago
- 67d33d8 c89 does not perform array -> pointer promotion unless the array is an lvalue. This by Chris Lattner · 17 years ago
- e7a2e91 move some code, no other change. by Chris Lattner · 17 years ago
- 53fcaa9 In c99 mode, comma does do function/array promotion even though by Chris Lattner · 17 years ago
- 080b332 Comma does not perform unary promotions, rdar://6095180 by Chris Lattner · 17 years ago
- 7c778f1 Cleaunup Sema::ActOnClassMessage(). This commit: by Steve Naroff · 17 years ago
- 99cb997 Reject typedef redefinitions when the underlying types are not identical, by Chris Lattner · 17 years ago
- 394f3f4 Move fix in r54013 from the parser to sema. by Steve Naroff · 17 years ago
- 7379889 Implemented Sema support for attribute "unused". by Ted Kremenek · 17 years ago
- b6ccaac Move isObjCObjectPointerType() from Sema to ASTContext. by Ted Kremenek · 17 years ago
- fc93d52 Fix Sema::ActOnClassMessage() to pass through the identifier for "super". by Steve Naroff · 17 years ago
- b8db21d When constructing an ObjCIvarDecl object in Sema, provide its visibility up front instead of setting it afterwards. by Ted Kremenek · 17 years ago
- 6bc5211 Fix rdar://6094010 various asserts happening with wide strings in inline asm. by Chris Lattner · 17 years ago
- 6e1eb87 Use llvm::utostr_32 instead of ostringstream. by Ted Kremenek · 17 years ago
- 4493f79 Implement nans, prefetch, and trap builtins. by Daniel Dunbar · 17 years ago
- 7caeabd minor cleanup to the actions interface to pass around SmallVectorImpl instead by Chris Lattner · 17 years ago
- 465172f Add test case for nonnull attribute. Fix indexing bug. by Ted Kremenek · 17 years ago
- eb2b2a3 Added sema support for the nonnull attribute. Will add test cases soon. by Ted Kremenek · 17 years ago
- 780f329 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 17 years ago
- 964c27c add forward definition protocols to the protocol list for a class. by Chris Lattner · 17 years ago
- 919d87d references to completely undeclared protocols should be errors. by Chris Lattner · 17 years ago
- 3db6cae introduce a new ObjCList templated class and start moving by Chris Lattner · 17 years ago
- f7b2c98 rename setReferencedProtocolList -> addReferencedProtocols to by Chris Lattner · 17 years ago
- e8f0d30 Change 'MDecl' to 'MD' to fix redefinition compiler error in MSVC++. by Argyrios Kyrtzidis · 17 years ago
- b752f28 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 17 years ago
- 6562fda when in the context of an @implementation, look for private methods in the by Chris Lattner · 17 years ago
- 1565e03 don't pass in null as the Name for GenerateClassStructure, by Chris Lattner · 17 years ago
- 0b2f7ea improve diagnostics about problems with receivers to highlight the receiver. by Chris Lattner · 17 years ago
- 2b1cc8b continue cleaning up code, and disable sending a message directly to an by Chris Lattner · 17 years ago
- fe1a553 simplify control flow a bit, reducing indentation. No functionality change. by Chris Lattner · 17 years ago
- b24d921 tighten up some checks, don't allow sending a message to NSString**** by Chris Lattner · 17 years ago
- 2a01b72 improve invalid member reference diagnostics to print the type and by Chris Lattner · 17 years ago
- c188d30 merge a bunch of code that is now common between qual interfaces and interfaces. by Chris Lattner · 17 years ago
- 9baefc2 rename getProtocols -> getProtocol, as it only returns a single by Chris Lattner · 17 years ago
- a38e6b1 Fix a bunch of crashes that occur in (attempted) handling of objc properties. by Chris Lattner · 17 years ago
- 123a11f use the simplified form of lookupInstanceVariable for callers who by Chris Lattner · 17 years ago
- 1f71974 improve the diagnostic for an erroneous objc ivar reference from: by Chris Lattner · 17 years ago
- 68a057b simplify a bunch of code, no functionality change. by Chris Lattner · 17 years ago
- fb173ec rearrange some code, no functionality change. by Chris Lattner · 17 years ago
- b49b572 improve comments yet again, now I know what this does :) by Chris Lattner · 17 years ago
- 0b6d1e6 minor rename, also, reject pointer to qualified id. by Chris Lattner · 17 years ago
- 17af2a6 Fix a crash that can happen when you have typedefs for pointers to by Chris Lattner · 17 years ago
- 22e684a simplify this predicate, only checking isObjCQualifiedIdType once. by Chris Lattner · 17 years ago
- 90eb539 Unify ctx_iterator/ctx_begin()/ctx_end() and iterator/begin()/end() so that a single iterator type is used for both traversing decls of the same declaration context *and* of the parent declaration contexts, depending on the value of the bool parameter 'LookInParentCtx' that is passed to IdentifierResolver::begin(). by Argyrios Kyrtzidis · 17 years ago
- 0ff12f0 When in C++, make EnumConstant names hide tag names in the same scope, instead of colliding with them. by Argyrios Kyrtzidis · 17 years ago
- 8f3b265 Two fixes: by Steve Naroff · 17 years ago
- b02ef24 When checking for name collision between a tag and a previously defined namespace, the collision occured even when the tag was in a different nested scope. by Argyrios Kyrtzidis · 17 years ago
- 96329d4 Added parsing/sema support for __attribute__ ((IBOutlet)), a clang-specific attribute that the static analyzer will use to recognize what ivars are IBOutlets. by Ted Kremenek · 17 years ago
- be2341d http://llvm.org/bugs/show_bug.cgi?id=2523 by Nate Begeman · 17 years ago
- cf0f51d rename "SInt" methods to "Int" in APValue. by Chris Lattner · 17 years ago
- 49ff7a1 Extend va_start checking to include __builtin_stdarg_start. by Ted Kremenek · 17 years ago
- f8396b6 Add parser support for __builtin_stdarg_start, PR2531 by Chris Lattner · 17 years ago
- 9a979c3 fix CheckForConstantInitializer() for Compound Literals by Nuno Lopes · 17 years ago
- fe5042e Fix warnings by Seo Sanghyeon · 17 years ago
- c44eec6 Shuffle things around in preparation for integrating Eli's constant evaluator. by Anders Carlsson · 17 years ago
- 14943b9 Fix PR2020 by recovering by defining an anonymous enum, instead of recovering by Chris Lattner · 17 years ago
- c87190d Added method "HandleTranslationUnit" to ASTConsumer. This is called by ParseAST when all of the ASTs in a translation unit have been built. by Ted Kremenek · 17 years ago
- 7bfa291 Update some comments. by Argyrios Kyrtzidis · 17 years ago
- 0795232 Add Sema support for C++ classes. by Argyrios Kyrtzidis · 17 years ago
- b7cfe88 Make a few related changes: by Chris Lattner · 17 years ago
- c9b346d make type attribute processing static instead of methods on Sema. by Chris Lattner · 17 years ago
- 803d080 make the rest of the decl attribute processing methods be by Chris Lattner · 17 years ago
- 0b2f4da make most of Sema public. Sema is a class private to the Sema library by Chris Lattner · 17 years ago
- 0744e5f move a few methods, no other change. by Chris Lattner · 17 years ago
- 0bf29ad handle type attributes when converting types, not when processing decls. by Chris Lattner · 17 years ago
- e5c5ee1 Make ProcessDeclAttributes walk the declarator structure pulling by Chris Lattner · 17 years ago
- 3ff30c8 move some code from all callers of ProcessDeclAttributes into by Chris Lattner · 17 years ago
- f2e4bd5 more attribute refactoring/renaming, no functionality change. by Chris Lattner · 17 years ago