1. 0d5d89d Improve our handling of (C++) references within Clang. Specifically: by Douglas Gregor · 16 years ago
  2. 670de64 Initialize Suffix and Prefix to 0, even with a bad entry. Removes an uninitialized value warning from gcc. by Ted Kremenek · 16 years ago
  3. 0a2da71 Add attribute always_inline support. by Daniel Dunbar · 16 years ago
  4. acb679b Mark mmintrin functions static inline, this ensures they don't end up by Daniel Dunbar · 16 years ago
  5. b0ea903 - Fix type-punning warning in SVals.cpp by using a real iterator class for symbol_iterator. by Ted Kremenek · 16 years ago
  6. 59fcaa0 Remove type-punning warning in GRExprEngine. No functionality change. by Ted Kremenek · 16 years ago
  7. 59fcc2c Skip random pathname characters better. I had a 5 in mine. by Mike Stump · 16 years ago
  8. 8bc5849 Update checker build. by Ted Kremenek · 16 years ago
  9. 01de491 Add test case to exercise IRgen "unsupported" path (mostly cleanup). by Daniel Dunbar · 16 years ago
  10. 8d4dff5 With -verify, only exit early on failure. by Daniel Dunbar · 16 years ago
  11. 849bfc6 Remove unneeded CheckASTConsumer function. - No functionality change. by Daniel Dunbar · 16 years ago
  12. ac6372a Comment fix, ParseAST does not take ownership of the consumer. by Daniel Dunbar · 16 years ago
  13. 593dbdb Add 'expected-warning' for braces around scalar initializer by Ted Kremenek · 16 years ago
  14. 1a237f2 Added compound literal test case. by Ted Kremenek · 16 years ago
  15. d83daa5 Added preliminary support for CompoundLiterals in the static analyzer: by Ted Kremenek · 16 years ago
  16. c7b0a45 Update Xcode project. by Ted Kremenek · 16 years ago
  17. 81329ab Pull determination of the super region for a VarRegion into a single getVarRegion() method. This provides a common clean API for clients. by Ted Kremenek · 16 years ago
  18. 6bc91b9 Added CompoundLiteralRegion to represent the (temporary) memory allocated for a compound literal. by Ted Kremenek · 16 years ago
  19. e8efe89 Fix testsuite regression for "crash.m". by Steve Naroff · 16 years ago
  20. bc14779 Don't double free module when IRgen fails. by Daniel Dunbar · 16 years ago
  21. 4cdc4a5 Improve dependency file support. by Daniel Dunbar · 16 years ago
  22. 21a04f3 Refactor the expression class hierarchy for casts. Most importantly: by Douglas Gregor · 16 years ago
  23. 39ba90e Some fixups to the previous objc/blocks rewriter smerge. by Steve Naroff · 16 years ago
  24. b30de27 - Move ExprIterator to Stmt.h so that it can be used by classes defined in Stmt.h by Ted Kremenek · 16 years ago
  25. 38a9e3f Integrate the blocks and objc rewriters. by Steve Naroff · 16 years ago
  26. 675a00a Fix some invalid casts that are detected by Sema now or soon. by Sebastian Redl · 16 years ago
  27. a2d8b1a Add store option to scan-build and ccc-analyzer. by Zhongxing Xu · 16 years ago
  28. d766346 Use ASTContext::getCanonicalType() to get TypedRegion's type. by Zhongxing Xu · 16 years ago
  29. 1a563da An ElementRegion is really a typed region. Its super region's type has to be ArrayType. by Zhongxing Xu · 16 years ago
  30. 0cbb9ec When destroying a translation unit, deallocate its owned declarations in reverse order, because there may be dependencies among the declarations. by Douglas Gregor · 16 years ago
  31. 13a05fa We cannot get precise lvalue for symbolic base array region. by Zhongxing Xu · 16 years ago
  32. fc08f5e Replace common diagnostic with a convenience function. by Steve Naroff · 16 years ago
  33. 3d081ae Fix <rdar://problem/6315646> clang on xcode: error: invalid operands to binary expression ('id<NSTableViewDelegate>' and 'XCExtendedArrayController *'). by Steve Naroff · 16 years ago
  34. e7c8a13 Get the canonical type for struct initialization. The original code would crash on TypedefType. by Zhongxing Xu · 16 years ago
  35. ae96d81 Add test for SCA region store. by Zhongxing Xu · 16 years ago
  36. 305ea6c Add test for SCA region store. by Zhongxing Xu · 16 years ago
  37. e8fc4d6 Only loc::MemRegionVal can be modified. This avoids crashing in RegionStore when a function pointer is used as an argument. by Zhongxing Xu · 16 years ago
  38. 7a4864e Rename Characteristic_t to CharacteristicKind by Chris Lattner · 16 years ago
  39. a07708f Fix the definition of __builtin_va_list on PPC, which was set to the V4 ABI, not the by Chris Lattner · 16 years ago
  40. a917798 make codegen reject initializes with designators, like this: by Chris Lattner · 16 years ago
  41. 71ca8c8 Remember whether an initlist had a designator in the AST. by Chris Lattner · 16 years ago
  42. ce236e7 pass designators into sema. This completes parser-level designator by Chris Lattner · 16 years ago
  43. 034198c implement some more FIXMEs, by rejecting more bogus stuff in objc mode. by Chris Lattner · 16 years ago
  44. 245d36d add some simple designator testcases. Reject things like this: by Chris Lattner · 16 years ago
  45. 9c665cf improve comments, build array and array range designator nodes, by Chris Lattner · 16 years ago
  46. 1aee232 improve comments, build a Designation for field designators and by Chris Lattner · 16 years ago
  47. 620da26 restructure ParseInitializerWithPotentialDesignator to make it by Chris Lattner · 16 years ago
  48. 23c12ef improve MayBeDesignationStart to do the entire determination by Chris Lattner · 16 years ago
  49. 70e9a09 inline the decision logic that chooses between an assign expr and brace by Chris Lattner · 16 years ago
  50. bc9e95d This patch continues parser-level implementation of designators: by Chris Lattner · 16 years ago
  51. e29ac82 minor cleanups by Chris Lattner · 16 years ago
  52. 73e65a6 Allow \n for newlines in expected error messages. by Sebastian Redl · 16 years ago
  53. 65b9964 Don't give a default argument to ASTContext::getFunctionType for the TypeQuals parameter, it causes subtle bugs where TypeQuals, while necessary, are omitted from the call. by Argiris Kirtzidis · 16 years ago
  54. 7ac59b1 Remove loc::StringLiteralVal. Now we allocate regions for string literals in the Store. by Zhongxing Xu · 16 years ago
  55. 5ac8bf1 Simplify ArrayToPointer conversion. Actually the only thing we need to do is to get the first element region. It is not necessary to care about the kind of the base array region. by Zhongxing Xu · 16 years ago
  56. c03d2ca CMake: Builds and installs clang binary and libs (no docs yet). It by Oscar Fuentes · 16 years ago
  57. df349f3 Use string literal for format string specifier; this prevents ErrMsg from being interpretted as a format string specifier. by Ted Kremenek · 16 years ago
  58. 6c83389 Do not crash when performing VisitLValue on union types. This fixes PR 2948. by Ted Kremenek · 16 years ago
  59. fabcffa Add a note file for SCA module. Is it the right place? by Zhongxing Xu · 16 years ago
  60. 2abba44 Add code for get the lvalue for string literals. Now we return a StringRegion by Zhongxing Xu · 16 years ago
  61. 73507bd Add StringRegion to MemRegions. by Zhongxing Xu · 16 years ago
  62. bbef705 Add StringLiteral test code. by Zhongxing Xu · 16 years ago
  63. 4f7ccaa Now we can handle arrays. by Zhongxing Xu · 16 years ago
  64. d41e2b1 2nd try to fix leakage of the module provider. note that moduleprovider takes ownership of the module by Nuno Lopes · 16 years ago
  65. 74d9278 fix leaking of the module provider by Nuno Lopes · 16 years ago
  66. 565fc45 Updated checker build. by Ted Kremenek · 16 years ago
  67. 8e4d5d7 Add a quote from the standard about the type of 'this'. by Argiris Kirtzidis · 16 years ago
  68. 835d436 Unbreak the test by.. removing a space. (clang protested that -verify only works on single input files). by Argiris Kirtzidis · 16 years ago
  69. 35fe5de Add initial dependency file generation support. Patch by Kovarththanan by Daniel Dunbar · 16 years ago
  70. 4b269b4 -Add support for cv-qualifiers after function declarators. by Argiris Kirtzidis · 16 years ago
  71. d7543a9 Add ViewVC link from web page. by Daniel Dunbar · 16 years ago
  72. 0fb6ae9 Generalize searching for the keyword "leak" in a bug type. by Ted Kremenek · 16 years ago
  73. a05446c Use "followsFundamentalRule" to determine if an instance method allocates memory. by Ted Kremenek · 16 years ago
  74. b6f0954 followsFundamentalRule() returns true if "alloc" or "new" appear at the beginning of the string, not anywhere within it. by Ted Kremenek · 16 years ago
  75. 27f2126 Expand bubble size by 50%. by Ted Kremenek · 16 years ago
  76. 61b897e Implicit conversions from arrays can also be conversions to references (will add a test case shortly). by Ted Kremenek · 16 years ago
  77. 8b196c5 This test no longer is marked XFAIL. by Ted Kremenek · 16 years ago
  78. 0106e20 Issue warnings about owned objects returned from a method that does not match the established Cocoa naming conventions. by Ted Kremenek · 16 years ago
  79. 73a36c9 Added method "getSelfRegion" to Store. This method returns the region associated with the "this" or "self" object (C++ and Objective-C respectively). by Ted Kremenek · 16 years ago
  80. 2539c11 Added region ObjCObjectRegion that represents an instance of an Objective-C object. by Ted Kremenek · 16 years ago
  81. 5424cec Move viewInheritance to CXXRecordDecl, and make sure it builds in Release mode, too by Douglas Gregor · 16 years ago
  82. ba3e8b7 PR2942: FunctionDecls by typedef crash the C++ front-end by Douglas Gregor · 16 years ago
  83. 982438742 Test commit by Sebastian Redl · 16 years ago
  84. 1c0cb81 Add another file to VC++ project. by Steve Naroff · 16 years ago
  85. 55c645a Make QualTypeOrdering::operator() const by Douglas Gregor · 16 years ago
  86. 651d1cc Some cleanups for the ambiguous derived-to-base conversion checks by Douglas Gregor · 16 years ago
  87. f8e9270 Semantic analysis for C++ reinterpret_cast and const_cast. Patch by Sebastian Redl. by Douglas Gregor · 16 years ago
  88. 650e228 Fix scan-build's processing of clang's analysis arguments. Patch by Nikita Zhuk! by Ted Kremenek · 16 years ago
  89. e41282c Yet another update to the VC++ proj. by Steve Naroff · 16 years ago
  90. dd9fe5e The Decl of an array region can be VarDecl or FieldDecl. Handle this in RegionStoreManager::ArrayToPointer(). by Zhongxing Xu · 16 years ago
  91. 84b043e Add random array and struct test code for SCA. by Zhongxing Xu · 16 years ago
  92. eb6c401 Use #define trickery to de-XFAIL test/Coverage/codegen-gnu.m while by Daniel Dunbar · 16 years ago
  93. 702d470 Implement struct initialization. Make it into a recursive function. Also make by Zhongxing Xu · 16 years ago
  94. 4a9c5f3 Use #define trickery to de-XFAIL test/Coverage/codegen-next.m while by Daniel Dunbar · 16 years ago
  95. 4a66ef1 Don't crash on invalid source locations in CGDebugInfo::getOrCreateCompileUnit. by Daniel Dunbar · 16 years ago
  96. b23b8ce svn:ignore test/SemaCXX/Output by Daniel Dunbar · 16 years ago
  97. da8ebd2 PR2919: __builtin_types_compatible_p strips CRV qualifiers. by Daniel Dunbar · 16 years ago
  98. 2709026 add a missing file to project, alphabeticalize. by Chris Lattner · 16 years ago
  99. 74a4e3a Add printing method to ElementRegion. by Zhongxing Xu · 16 years ago
  100. 81daa76 Use LINK_COMPONENTS instead of hard coding LLVM libraries. by Daniel Dunbar · 16 years ago