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