1. 4c97d76 Diagnose invalid uses of tagged types with a missing tag. For example, in: by Chris Lattner · 15 years ago
  2. 5186872 fix a valgrind problem I noticed while developing another patch, by Chris Lattner · 15 years ago
  3. c199ab3 Implement the first set of changes for PR3963 and rdar://6759604, by Chris Lattner · 15 years ago
  4. 2040169 add a new isNull() method to DeclGroupRef. by Chris Lattner · 15 years ago
  5. bfc861e a few cleanups to StatementCreatesScope: unnest the whole thing, by Chris Lattner · 15 years ago
  6. e2b6833 Parse deleted member functions. Parsing member declarations goes through a different code path that I forgot previously. by Sebastian Redl · 15 years ago
  7. 2c4463f Fix rdar://6770142 - Class and qualified id's are compatible, just like by Chris Lattner · 15 years ago
  8. 58fe03b Fix rdar://6771034: don't warn on use of forward declared protocol in protocol by Chris Lattner · 15 years ago
  9. 312531a implement rdar://6780761, making sema reject some code that otherwise by Chris Lattner · 15 years ago
  10. d82df3a Implement support for GCC's -dD mode, which dumps -E output *and* by Chris Lattner · 15 years ago
  11. f4a72b0 add a ppcallback hook for macro definitions. by Chris Lattner · 15 years ago
  12. 7356a31 now that we have an identifier table in the PCH file, finish hooking up by Chris Lattner · 15 years ago
  13. d1e0f5a improve location info for property stuff. In a property like this: by Chris Lattner · 15 years ago
  14. 3aff919 improve the 'conflicting types' diagnostics to include correct location info, now by Chris Lattner · 15 years ago
  15. 7db638d Set proper location info on objc method arguments. by Chris Lattner · 15 years ago
  16. f97e8fa simplify code to use adjustParameterType, apply objc arg attributes by Chris Lattner · 15 years ago
  17. 9097af1 fix blocks to reject objc interfaces returned by value. Also, by Chris Lattner · 15 years ago
  18. bb74982 diagnose attempts to return objc interfaces by-value from C functions. by Chris Lattner · 15 years ago
  19. 2dd979f Improve the 'cannot pass objc interface by value' diagnostic: by Chris Lattner · 15 years ago
  20. e294d3f change the interface to ActOnMethodDeclaration to pass down argument by Chris Lattner · 15 years ago
  21. da0895d Minor refactoring of my last patch. by Fariborz Jahanian · 15 years ago
  22. 8f823d2 sink abstract typedefs like Action::ExprTy from the Action class by Chris Lattner · 15 years ago
  23. 3c304bd add some #includes for better compatibility with gcc 4.4, by Chris Lattner · 15 years ago
  24. 2fc5c24 rename Parser::ParseObjCSelector -> Parser::ParseObjCSelectorPiece, by Chris Lattner · 15 years ago
  25. 5272b7f simplify this code to not bother stripping to canonical types, and by Chris Lattner · 15 years ago
  26. 140fb26 Fixes a ir-gen crash for K&R style blocks. by Fariborz Jahanian · 15 years ago
  27. 9ccb065 Don't mangle variables that are at translation unit scope. by Anders Carlsson · 15 years ago
  28. 1e5dc6e Add support for generating reference initialization code. by Anders Carlsson · 15 years ago
  29. b3bf76f Add analyzer support for objc_atomicCompareAndSwap() by Ted Kremenek · 15 years ago
  30. afaf308 Store unique IDs for identifiers in the PCH file. Use some bitmangling by Douglas Gregor · 15 years ago
  31. 1670e40 Implement analyzer support for OSCompareAndSwap. This required pushing "tagged" by Ted Kremenek · 15 years ago
  32. c211218 Non-pointer objects are none gc'able regardles of the attribute set on them. by Fariborz Jahanian · 15 years ago
  33. e1d918e Compare the predefines buffer in the PCH file with the predefines by Douglas Gregor · 15 years ago
  34. c0c0ef0 Fixup copy/dispose helpers for Objective-C. Radar 6756504 by Mike Stump · 15 years ago
  35. a6cd009 Remove asserts that weren't really useful, and that would fire in case the CleanupEntries vector needed to be reallocated. by Anders Carlsson · 15 years ago
  36. 0a9217f Fix another fallout from defining __weak unconditionally. by Fariborz Jahanian · 15 years ago
  37. 64c2e07 Don't set both readnone and readonly. by Daniel Dunbar · 15 years ago
  38. 531cc83 do a dance with predefines, and finally enable reading of macros from by Chris Lattner · 15 years ago
  39. 6bf0f4c move a bunch of code for initializing the predefines buffer out of Preprocessor.cpp by Chris Lattner · 15 years ago
  40. 42d42b5 add support for reading macros. This does all the reading (with a bunch of by Chris Lattner · 15 years ago
  41. 555589d simplify code. by Chris Lattner · 15 years ago
  42. 2bec041 Encode the target triple in the PCH file, and check that target triple when using the PCH file by Douglas Gregor · 15 years ago
  43. f36a06a Honor MACOSX_DEPLOYMENT_TARGET environment variable. by Daniel Dunbar · 15 years ago
  44. 0a0428e Implement serialization/deserialization of LangOptions in the PCH by Douglas Gregor · 15 years ago
  45. 7e714cd Internal variables could mistakenly have "hidden" visibility when by Daniel Dunbar · 15 years ago
  46. ff8857a Driver: Forward -miphoneos-version-min to clang. by Daniel Dunbar · 15 years ago
  47. 8d33cd7 Support -miphoneos-version-min in clang-cc. by Daniel Dunbar · 15 years ago
  48. b7477cf Fixup codegen for nested blocks that use copy/dispose in the inner by Mike Stump · 15 years ago
  49. 960cd06 Patch to generate meta-data for prtocol used in @protocol expression. by Fariborz Jahanian · 15 years ago
  50. a1e2fd9 Driver: CCC_ADD_ARGS could end up using dangling pointers. by Daniel Dunbar · 15 years ago
  51. 5a11295 Use getDeclName() instead of getIdentifier() (safe against null pointers) by Ted Kremenek · 15 years ago
  52. d14f270 add a new PP_MACRO_NAME hack so that I can test object-like macros. by Chris Lattner · 15 years ago
  53. fc3388d Move a few more NonLoc static functions to ValueManager. by Ted Kremenek · 15 years ago
  54. df961c2 emit tokens, constify the Preprocessor passed down into PCH writer. by Chris Lattner · 15 years ago
  55. 7c5d24e emit function-like and object-like macros to the PCH file. by Chris Lattner · 15 years ago
  56. f120251 Add PCH sources to CMake build files by Douglas Gregor · 15 years ago
  57. 8038d51 Various minor fixes to PCH reading and writing, with general by Douglas Gregor · 15 years ago
  58. f04ad69 improve punctuation by Chris Lattner · 15 years ago
  59. 0b1fb98 Arrange for the preprocessor to be passed down into the PCH writer. by Chris Lattner · 15 years ago
  60. ec13d92 Add prototype for CodeTextRegion. by Zhongxing Xu · 15 years ago
  61. 3330dcb Finally nuke loc::SymbolVal. by Zhongxing Xu · 15 years ago
  62. 2f1169f Use correct alignment and size for references in records as well. by Anders Carlsson · 15 years ago
  63. 12e330c Rename variables to avoid conflict. by Anders Carlsson · 15 years ago
  64. 1b78276 Add Expr::EvaluateAsLValue which will (believe it or not) try to evaluate an Expr as an LValue. by Anders Carlsson · 15 years ago
  65. f093023 Fix thinko noticed by Chris. by Anders Carlsson · 15 years ago
  66. 4cc2cfd Use the same alignment for reference declarations as for pointer declarations. by Anders Carlsson · 15 years ago
  67. 14f7900 PCH serialization/deserialization of the source manager. With this by Douglas Gregor · 15 years ago
  68. 52e5602 Fix: <rdar://problem/6776949> Branch condition evaluates to an uninitialized value (argc is guaranteed to be >= 1) by Ted Kremenek · 15 years ago
  69. 11c7d32 Make messages consistent. by Chris Lattner · 15 years ago
  70. b75863d reject codegen of __thread variables as unimplemented, rdar://6775265 by Chris Lattner · 15 years ago
  71. b725232 Implement attribute "analyzer_noreturn" (<rdar://problem/6777003>). This allows by Ted Kremenek · 15 years ago
  72. 2cf2634 Implementation of pre-compiled headers (PCH) based on lazy by Douglas Gregor · 15 years ago
  73. 8d7f548 - Move ownership of MemRegionManager into ValueManager. by Ted Kremenek · 15 years ago
  74. c612f7b Add @encode support for complex types. by Anders Carlsson · 15 years ago
  75. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 15 years ago
  76. d296836 Add some FIXMEs for missing checks. by Eli Friedman · 15 years ago
  77. c36c540 Simple DeclContext's internal representation by always storing a by Douglas Gregor · 15 years ago
  78. 8e5fb28 Remove SVal::MakeZero and replace it with ValueManager::makeZeroVal. by Ted Kremenek · 15 years ago
  79. 044b6f0 analyzer: Introduce a new class, ValueManager, that serves as an aggregate by Ted Kremenek · 15 years ago
  80. c565b63 stop using loc::SymbolVal and clean up code with new API. by Zhongxing Xu · 15 years ago
  81. 021887e clean up code with new API. by Zhongxing Xu · 15 years ago
  82. caf8ce1 clean up code with new API. by Zhongxing Xu · 15 years ago
  83. 9cafcd5 clean up code with new API. by Zhongxing Xu · 15 years ago
  84. cfe2991 clean up code with new API. by Zhongxing Xu · 15 years ago
  85. ea7c5ce stop using loc::SymbolVal. by Zhongxing Xu · 15 years ago
  86. 8944c49 stop using loc::SymbolVal. by Zhongxing Xu · 15 years ago
  87. f97c070 stop using loc::SymbolVal. by Zhongxing Xu · 15 years ago
  88. bd41db9 clean up code with new API. by Zhongxing Xu · 15 years ago
  89. 6782f75 clean up code with new API. by Zhongxing Xu · 15 years ago
  90. fe1635b Add a new method because sometimes the type of the conjured symbol is not the by Zhongxing Xu · 15 years ago
  91. 9e82acb make a conjured symbol as the original code. by Zhongxing Xu · 15 years ago
  92. 51ae790 clean up code with new API. by Zhongxing Xu · 15 years ago
  93. f8769c8 Fix a null pointer dereference error due to state caching in a loop involving by Ted Kremenek · 15 years ago
  94. 867418f Create a symbolic region instead of a loc::SymbolVal. This is a continued step by Zhongxing Xu · 15 years ago
  95. fe630b9 GRExprEngine: Don't try to reason about the size of 'void' for the return type by Ted Kremenek · 15 years ago
  96. 24ae89a Another ParentMap bug: only the right side of a comma expression is consumed. by Ted Kremenek · 15 years ago
  97. e644939 Fix another regression introduced by changes to the analyzer's reasoning about by Ted Kremenek · 15 years ago
  98. e8dbf06 Refactor/cleanup reasoning of nil receivers in message expressions. by Ted Kremenek · 15 years ago
  99. c21c485 Driver: Split out CPP specific options for clang so that we don't end by Daniel Dunbar · 15 years ago
  100. a0c3e9c Fix <rdar://problem/6770998> make cast of super illegal (again:-) by Steve Naroff · 15 years ago