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