1. 03b9866 Convert the CharInfo table to be statically initialized, instead of dynamically initialized. Patch by Ryan Flynn! by Chris Lattner · 15 years ago
  2. 6bec78d Tighten up the conditions under which we build an implicit function by Douglas Gregor · 15 years ago
  3. c29f77b Make ASTContext explicitly keep track of the declaration for the C by Douglas Gregor · 15 years ago
  4. 0d3c26c A few change per Doug's feedback. - Fariborz by Fariborz Jahanian · 15 years ago
  5. 96bac6b Fix comment. by Zhongxing Xu · 15 years ago
  6. efb173d fix an out-of-date comment. by Chris Lattner · 15 years ago
  7. 7f579b1 pic16 preproc defs. by Sanjiv Gupta · 15 years ago
  8. db4f531 fix comment. by Zhongxing Xu · 15 years ago
  9. bd2ab6e Refactor DeclLocResolver/StmtLocResolver into a more functional style by removing the search state by Argyrios Kyrtzidis · 15 years ago
  10. e650c8c Introduce the notion of "Relocatable" precompiled headers, which are built by Douglas Gregor · 15 years ago
  11. 169077d NewCastRegion: Handle casts *from* pointers to incomplete structs to other types. by Ted Kremenek · 15 years ago
  12. db5f266 Fix 80 col violation. by Ted Kremenek · 15 years ago
  13. fc8f57c Restructure NewCastRegion to use a switch statement that dispatches off the by Ted Kremenek · 15 years ago
  14. 07cdec1 Fix 80 col violation. by Ted Kremenek · 15 years ago
  15. b9a4425 NewCastRegion: Handle casts to any Objective-C pointer, not just qualified ids. by Ted Kremenek · 15 years ago
  16. 1f612cb Implement FIXME. by Ted Kremenek · 15 years ago
  17. 0307cd5 Unbreak build by including header. by Ted Kremenek · 15 years ago
  18. 411af40 StoreManager::NewCastRegion: by Ted Kremenek · 15 years ago
  19. e1cea75 Make 'BasicStoreManager' + 'NewCastRegion' testable from the command line using '-analyzer-store=basic-new-cast'. by Ted Kremenek · 15 years ago
  20. 0daea7a Update CMake files. by Argyrios Kyrtzidis · 15 years ago
  21. 4499405 Use the "ASTLocation nomenclature" (instead of the ASTNode one) in index-test.cpp. by Argyrios Kyrtzidis · 15 years ago
  22. 755c6b4 Some changes to ASTLocation's methods by Argyrios Kyrtzidis · 15 years ago
  23. 8fb3333 Add some comments to the ASTLocation class. by Argyrios Kyrtzidis · 15 years ago
  24. 818e15b Move the 'ResolveLocationInAST' function from the Frontend library to the Index library. by Argyrios Kyrtzidis · 15 years ago
  25. ccbcb70 Move ASTLocation and DeclReferenceMap from the AST library to the Index library. by Argyrios Kyrtzidis · 15 years ago
  26. 874012b Rename 'ASTNode' -> 'ASTLocation'. by Argyrios Kyrtzidis · 15 years ago
  27. 145918c NewCastRegion: by Ted Kremenek · 15 years ago
  28. ca4e1b7 Fix loop so that 'continue' statements actually cause the loop to iterate. by Ted Kremenek · 15 years ago
  29. 48ce7de Move the new 'CastRegion' implementation from RegionStoreManager to StoreManager by Ted Kremenek · 15 years ago
  30. f933437 Fix a problem with false diagnostics when comparing distinct NULL pointer types, from David Majnemer by Douglas Gregor · 15 years ago
  31. 6134104 Update checker build. by Ted Kremenek · 15 years ago
  32. d89275b Fix PR 4489, a crash in PCH loading that occurs when loading the name by Douglas Gregor · 15 years ago
  33. 6d4b76d Fix <rdar://problem/7033733>. The CF_RETURNS_RETAINED attribute should work if the return type on an Objective-C method is a CF type reference, not just an Objective-C object reference. by Ted Kremenek · 15 years ago
  34. 675431d Parsing fix for out-of-line constructors, from Piotr Rak by Douglas Gregor · 15 years ago
  35. c1daae3 Fix out-of-source regression testing for makefiles by Douglas Gregor · 15 years ago
  36. 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
  37. 6f4a69a Fix bitfield promotion in the presence of explicit casts, from Abrama Bagnara. by Douglas Gregor · 15 years ago
  38. 313b6da Further cleanup of region invalidation code. No functionality change. by Zhongxing Xu · 15 years ago
  39. 9852b5b AllocaRegion and SymbolicRegion are both boundable. by Zhongxing Xu · 15 years ago
  40. 43e2aaf Start to gradually move region invalidation code into store manager. by Zhongxing Xu · 15 years ago
  41. 921bd26 Having tests that depend on previously created files is bad idea. Fix them to be self-sufficient. by Argyrios Kyrtzidis · 15 years ago
  42. a342675 Fix for PR4502: add calculation of the integer conversion rank for wchar_t. by Eli Friedman · 15 years ago
  43. 6036ebe More tweaks to types for OpenBSD. Patch by Jonathan Gray. by Eli Friedman · 15 years ago
  44. 7b332d9 Make use of the Index library through the index-test tool. by Argyrios Kyrtzidis · 15 years ago
  45. 9eec4ed Introduce the 'Index' library. by Argyrios Kyrtzidis · 15 years ago
  46. 2c2ba3e Introduce the DeclReferenceMap class inside the AST library. by Argyrios Kyrtzidis · 15 years ago
  47. fc7e2a8 Introduce the virtual method Decl::getPrimaryDecl(). by Argyrios Kyrtzidis · 15 years ago
  48. 07796e1 Avoid re-checking the parameters of a function, when trying to resolve a location. by Argyrios Kyrtzidis · 15 years ago
  49. 49dd585 Make use of ASTNode for return value of clang::ResolveLocationInAST() and in the index-test tool. by Argyrios Kyrtzidis · 15 years ago
  50. c082463 Introduce ASTNode class into the AST library. by Argyrios Kyrtzidis · 15 years ago
  51. 685477f Do an early check for function definition. by Argyrios Kyrtzidis · 15 years ago
  52. 624c146 Per PR4506, fix the type of size_t on OpenBSD. by Eli Friedman · 15 years ago
  53. 9a08fee CompoundLiteralRegion is boundable when it is not in the file scope. by Zhongxing Xu · 15 years ago
  54. 4994d2d Catch function redeclarations with incompatible exception specifications. by Sebastian Redl · 15 years ago
  55. 0a51f1c StringRegion is not boundable. by Zhongxing Xu · 15 years ago
  56. c51db23 This fixes the case where the wrong symbol is emitted leading to linking errors when you reference a class before defining it (GNU runtime). by Fariborz Jahanian · 15 years ago
  57. 8834af3 remove utility methods that are not very useful. by Zhongxing Xu · 15 years ago
  58. c5771fd add test case for r74407. by Zhongxing Xu · 15 years ago
  59. 600437f Update checker build. by Ted Kremenek · 15 years ago
  60. dc04316 Add an intermediate typedef for __builtin_va_tag to make it a bit easier by Eli Friedman · 15 years ago
  61. ed2c291 Remove unused method. by Ted Kremenek · 15 years ago
  62. f6c9f42 BasicStoreManager: Use SymbolManager::canSymbolicate() to determine if a variable can be symbolicated. by Ted Kremenek · 15 years ago
  63. ed47fc6 Fix a horrible CFG bug reported in <rdar://problem/7027684>. The wrong successor by Ted Kremenek · 15 years ago
  64. fbbb1e7 Revert prev commit, we have much bigger problems because 2.3 is missing by Daniel Dunbar · 15 years ago
  65. 8afede2 Avoid @staticmethod to allow use with Python 2.3. by Daniel Dunbar · 15 years ago
  66. bb2b433 Replace guarded calls in RegionStoreManager to by Ted Kremenek · 15 years ago
  67. dc14726 Enhance RegionStore to lazily symbolicate fields and array elements for by Ted Kremenek · 15 years ago
  68. 41e8c21 Fix RUN line so this test doesn't hang. by Ted Kremenek · 15 years ago
  69. 5ffcd7b Patch to allocate list of bases in CXXRecordDecl using ASTContxt allocation. by Fariborz Jahanian · 15 years ago
  70. 1508636 StoreManagers: Use 'hasGlobalsStorage()' and 'hasParametersStorage()' instead of by Ted Kremenek · 15 years ago
  71. d05552a Add a separate MemSpaceRegion for function/method arguments passed on the stack. by Ted Kremenek · 15 years ago
  72. 7f39d29 Remove commented methods. Add MemRegion::printStdErr(). by Ted Kremenek · 15 years ago
  73. 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 15 years ago
  74. 5068ab6 Look through vector types when determining the base type of a type for declarator printing. Bug found via the PCH tester by Douglas Gregor · 15 years ago
  75. 73b85f3 Use Destroy for member initializer list clean up. by Fariborz Jahanian · 15 years ago
  76. 8b2ba31 Minor code cleanup: pull variables into scope of 'if' statement, limiting their by Ted Kremenek · 15 years ago
  77. ae4df62 Fix PR 4489, a PCH crash during de-serialization. by Douglas Gregor · 15 years ago
  78. dac5bd4 Temporarily disable RegionStore for stack-addr-ps.c, as a new test case reveals by Ted Kremenek · 15 years ago
  79. 921109a Add a FIXME to RegionStore, do some minor code cleanup, and get RegionStore to by Ted Kremenek · 15 years ago
  80. 8f1ca78 Update for changes in LLVM. Hopefully this is the last one for a while. by Owen Anderson · 15 years ago
  81. cca9e96 Keep track of more information within the template instantiation stack, e.g., by Douglas Gregor · 15 years ago
  82. c93f498 Hold the LLVMContext by reference instead of by pointer. by Owen Anderson · 15 years ago
  83. d45c363 Updated CXXConstructorDecl AST node for ctor-initilaizer list. by Fariborz Jahanian · 15 years ago
  84. d906dc7 Fix thinko in r74506, test condition for floats was inverted. by Daniel Dunbar · 15 years ago
  85. df35d7f Driver: Mark some Compilation members const. by Daniel Dunbar · 15 years ago
  86. c88a88f Driver: Move Compilation::Execute to Driver::ExecuteCompilation. by Daniel Dunbar · 15 years ago
  87. 9617433 Patch to implement template types in ctor-initializer list. by Fariborz Jahanian · 15 years ago
  88. 31c11eb Driver: Improve diagnostics for failed commands. by Daniel Dunbar · 15 years ago
  89. cae087e Driver: Add Source argument for Commands to hold the Action which caused a by Daniel Dunbar · 15 years ago
  90. 4d374d4 Add header search path for Gentoo stable, x86_64 version. by Sebastian Redl · 15 years ago
  91. 42253cc Update for LLVMContext+Module change. by Owen Anderson · 15 years ago
  92. a384492 Two fixes to make Clang build on Visual C++ (again), from Alisdair Meredith. by Douglas Gregor · 15 years ago
  93. 7154a77 Rework Sema::CheckConditionalOperands(). No functionality change. by Steve Naroff · 15 years ago
  94. c0b8b19 Implement Eli's feedback for vecto constant expressions; by Nate Begeman · 15 years ago
  95. b59761b use new and simplified LLVM APIs. Patch by Jay Foad! by Chris Lattner · 15 years ago
  96. 3c7b6e4 Fix for PR4192: fix the definition of int64_t on x86_64 Linux. by Eli Friedman · 15 years ago
  97. 5ff8e8c add fixme. by Zhongxing Xu · 15 years ago
  98. 16134c6 Cope with explicitly-specified function template arguments when there by Douglas Gregor · 15 years ago
  99. 6db8ed4 When explicit template arguments are provided for a function call, by Douglas Gregor · 15 years ago
  100. bcfad54 Patch to support optional nested-name-specifier in in ctor-initializer list. by Fariborz Jahanian · 15 years ago