1. 11f5ccf Allow loading identifiers from any file in the chain. WIP by Sebastian Redl · 14 years ago
  2. 740e807 Convert the ObjC @synchronized cleanups to laziness. This is not actually by John McCall · 14 years ago
  3. 1bda662 Add a little helper method which will be useful soon. by John McCall · 14 years ago
  4. 971dd44 Apparently not every system thinks that references in pairs are as cool as I think. by Sebastian Redl · 14 years ago
  5. cb526aa Allow loading declarations from any file in the chain. WIP by Sebastian Redl · 14 years ago
  6. aaec0aa Allow loading types from any file in the chain. WIP by Sebastian Redl · 14 years ago
  7. ec5ea2b Remove unintended code that was checked in as part of r108916. by Devang Patel · 14 years ago
  8. 4d939e6 Remove unused argument. by Devang Patel · 14 years ago
  9. 204b075 Fix the IR generation for catching pointers by references. by John McCall · 14 years ago
  10. 806941e in 'new int[4]', constant fold the 4*4=16 instead of doing an overflow check. by Chris Lattner · 14 years ago
  11. 190faf7 Allow loading source locations from any file in the chain. WIP by Sebastian Redl · 14 years ago
  12. 518d8cb More work on getting PCHReader to handle multiple files. Promote SLocOffsets to per-file data. WIP by Sebastian Redl · 14 years ago
  13. 83252dc Follow the implementation approach suggested by PR6687, by Chris Lattner · 14 years ago
  14. 021a7a6 Adopt objc_assign_threadlocal() for __thread variables of GC types. by Fariborz Jahanian · 14 years ago
  15. 700a1cb Print template argument names for template class. by Devang Patel · 14 years ago
  16. 6c552c1 implement rdar://5739832 - operator new should check for overflow in multiply, by Chris Lattner · 14 years ago
  17. f033f1d Introduce a new lexer function to compute the "preamble" of a file, by Douglas Gregor · 14 years ago
  18. 4751a53 Use getDebugLoc and setDebugLoc instead of getDbgMetadata and setDbgMetadata, by Dan Gohman · 14 years ago
  19. 1e51c20 Hookup checking for invalid length modifiers in scanf format strings. by Ted Kremenek · 14 years ago
  20. a412a49 Move 'hasValidLengthModifier' from PrintfFormatSpecifier to FormatSpecifier. by Ted Kremenek · 14 years ago
  21. 7fdba13 Cleanup whitespace in switch statement. No functionality change. by Ted Kremenek · 14 years ago
  22. 6ecb950 Add 'ConversionSpecifier' root class in 'analyze_format_string' namespace and by Ted Kremenek · 14 years ago
  23. de183a4 Rename 'UnicodeStrArg' to 'SArg'. by Ted Kremenek · 14 years ago
  24. 35d353b Rename 'ConsumedSoFarArg' -> 'nArg' and 'OutIntPtrArg' to 'nArg' (scanf and printf checking). by Ted Kremenek · 14 years ago
  25. 6693205 Rename 'VoidPtrArg' to 'pArg' in printf/scanf checking. by Ted Kremenek · 14 years ago
  26. 99196b1 Rename 'CStrArg' to 'sArg' for printf checking to match with the analagous enum for scanf checking. by Ted Kremenek · 14 years ago
  27. 92a6feb Rename analyze_printf::ConversionSpecifier::IntAsCharArg to 'cArg' to match by Ted Kremenek · 14 years ago
  28. 649aecf Rename diagnostic so that it can be reused with scanf checking. No functionality change. by Ted Kremenek · 14 years ago
  29. 6ba9aae delete a loop that just generates dead code. In an example like this: by Chris Lattner · 14 years ago
  30. defe8b2 remove the special case for constant array sizes from by Chris Lattner · 14 years ago
  31. 35eee09 Re-apply fixed version of 108749, correctly conditionalizing the new sections on by Jim Grosbach · 14 years ago
  32. 427c492 Complain when string literals are too long for the active language by Douglas Gregor · 14 years ago
  33. 2c853e4 Hide FunctionTemplateDecl's specializations folding set as implementation detail and introduce by Argyrios Kyrtzidis · 14 years ago
  34. bc5ab7c Whether the specialization should be added to template's folding set when read from PCH, by Argyrios Kyrtzidis · 14 years ago
  35. cc0b1bc Hide the specializations folding sets of ClassTemplateDecl as an implementation detail (InsertPos by Argyrios Kyrtzidis · 14 years ago
  36. 405861d Add -lstdc++ to DragonFly tools. Patch by Sascha Wildner. by Rafael Espindola · 14 years ago
  37. 03509ae Constify all references to Stmt* and CFGBlock* in libChecker. by Zhongxing Xu · 14 years ago
  38. 906082e Update ImplicitCastExpr to be able to represent an XValue. by Sebastian Redl · 14 years ago
  39. bc5495b Constify. by Zhongxing Xu · 14 years ago
  40. bf9c2b2 remove const_cast. by Zhongxing Xu · 14 years ago
  41. ce2bc7e3 constify. by Zhongxing Xu · 14 years ago
  42. 3992a50 Constify. by Zhongxing Xu · 14 years ago
  43. 257d1d3 Correct line info for declarations/definitions. Radar 8063111. by Stuart Hastings · 14 years ago
  44. af0bbea Temporarily revert. Some odd internal breakage is likely related. by Jim Grosbach · 14 years ago
  45. 2f82c58 Remove PCHReader::getStream(), it was unused. Inline PCHReader::getDelsCursor() into its sole caller and remove it. This reduces the attack surface of multiple PCH files towards code outside the PCH implementation. by Sebastian Redl · 14 years ago
  46. 2da08f9 Promote IdentifierOffsets to per-file data. by Sebastian Redl · 14 years ago
  47. 12d6da0 Promote DeclOffsets and TypeOffsets to per-file data. by Sebastian Redl · 14 years ago
  48. a8f8dac Patch to type match comparing Objective-C Classes which implement by Fariborz Jahanian · 14 years ago
  49. baa4006 Don't warn when a '%%' or '%*d' (scanf) is used in a format string with positional arguments, since by Ted Kremenek · 14 years ago
  50. abc563f Introduce a new libclang API, clang_reparseTranslationUnit(), which by Douglas Gregor · 14 years ago
  51. c09b6a5 Hook up 'invalid conversion' warning for scanf format strings. by Ted Kremenek · 14 years ago
  52. 2543dbb Put ObjC method names, method types and class names in separate string literal by Jim Grosbach · 14 years ago
  53. 93fb9ed Promote the identifier table to per-file data. Also, if a CHAINED_METADATA record exists, it has to be the first thing in the PCH file. by Sebastian Redl · 14 years ago
  54. be86ecc Add missing conversion specifier parsing for 'u', 'x', 'o', and 's'. Fixes <rdar://problem/8204052>. by Ted Kremenek · 14 years ago
  55. 5314e44 Driver: Make -fnext-runtime the default when rewriting Objective-C. by Daniel Dunbar · 14 years ago
  56. 60baf0f Driver/Darwin: Add deployment target after doing argument translation, so that by Daniel Dunbar · 14 years ago
  57. c0e665e Driver: Factor out Darwin::AddDeploymentTarget. by Daniel Dunbar · 14 years ago
  58. 9a90d79 Remove unused location-to-AST-node resolver. libclang's implementation supercedes it by Douglas Gregor · 14 years ago
  59. 84ef4b2 Categories cannot synthesize property ivars, and a minor cleanup. by Fariborz Jahanian · 14 years ago
  60. 7a42054 Fix construction of AnalysisContext. Thanks Daniel. by Zhongxing Xu · 14 years ago
  61. e3041be Fix http://llvm.org/PR7660 by Argyrios Kyrtzidis · 14 years ago
  62. dfe503e tidy up comment. by Chris Lattner · 14 years ago
  63. bc46c6b remove CallInliner.cpp. by Zhongxing Xu · 14 years ago
  64. 9843ba9 Add double close check to StreamChecker. Patch by Lei Zhang. by Zhongxing Xu · 14 years ago
  65. c6238d2 Reapply r108617. by Zhongxing Xu · 14 years ago
  66. 0bbad51 Driver: Change the driver to take the path to the main executable, instead of by Daniel Dunbar · 14 years ago
  67. a001c1c Driver: Fix a possible use after free. by Daniel Dunbar · 14 years ago
  68. 8d13d22 Fix a goof in my previous patch -- not all of the builtins return a value, some by Chandler Carruth · 14 years ago
  69. c00cb64 Fix mangling for static member variables of classes inside an extern "C" by Eli Friedman · 14 years ago
  70. 8a6c0f1 When instantiating function definitions set parameter names to those used in template by Peter Collingbourne · 14 years ago
  71. db4325b Improve the representation of the atomic builtins in a few ways. First, we make by Chandler Carruth · 14 years ago
  72. 9638eef BUILD_ARCHIVE is the default for libraries, no need to set it. by Chris Lattner · 14 years ago
  73. f0ca0ee Fix crash initializing a bit-field with a non-constant in a place where we by Eli Friedman · 14 years ago
  74. 8d43808 Check for casts to an incomplete type in C. Improves diagnostics for cast to by Eli Friedman · 14 years ago
  75. ac0021b Added PCH/ASTImporter code for ObjCIvarDecl's field. by Fariborz Jahanian · 14 years ago
  76. 920bf45 Add another terrible VC++ compatibility hack: allow users to by Chris Lattner · 14 years ago
  77. ee30965 Revert r108617, it broke the build. by Benjamin Kramer · 14 years ago
  78. 69b8194 Prepare the analyzer for the callee in another translation unit: by Zhongxing Xu · 14 years ago
  79. cb07788 Fix '<rdar://problem/8202272> __imag passed non-complex should not crash' by removing a bogus assertion. by Ted Kremenek · 14 years ago
  80. ad51e74 Patch to synthesize property ivars on demand as by Fariborz Jahanian · 14 years ago
  81. 8262b6a The GNU-runtime ObjC personality function doesn't let us rethrow with URR for by John McCall · 14 years ago
  82. 4532931 Fix APFloat assertion failure in IdempotentOperationChecker resulting in having by Ted Kremenek · 14 years ago
  83. fbd4bf1 Teach the PCH reader to load the dependency when encountering a chain metadata record. WIP by Sebastian Redl · 14 years ago
  84. 0ea4dfd When checking whether to bind an expression to a temporary, don't bind Obj-C message send expressions who call methods that return references. by Anders Carlsson · 14 years ago
  85. cdf3b83 Separate out the initial loading of a PCH so that loading chained PCHs can reuse it. by Sebastian Redl · 14 years ago
  86. df4ca42 Improved false positive rate for the idempotent operations checker and moved it into the default path-sensitive analysis options. by Tom Care · 14 years ago
  87. b7c2101 Hook up warning for an incomplete scanlist in scanf format strings. by Ted Kremenek · 14 years ago
  88. 9137a52 First baby steps towards PCHReader being able to keep track of multiple PCH files. WIP by Sebastian Redl · 14 years ago
  89. f9f97a0 When performing template name lookup for a dependent member access by Douglas Gregor · 14 years ago
  90. 1476ed4 Add a little more data to chained PCHs. WIP by Sebastian Redl · 14 years ago
  91. a0ebd60 Revert Microsoft-specific override of the "typedef requires a name" by Douglas Gregor · 14 years ago
  92. 0c99ec6 Suppress the "typedef requires a name" warning in Microsoft-extensions mode by Douglas Gregor · 14 years ago
  93. c9068d7 Treat template parameters as part of the declaration-specifiers for the by John McCall · 14 years ago
  94. ddc6ff6 Sema: Fix a bug with #pragma options align=reset, reset against an empty stack by Daniel Dunbar · 14 years ago
  95. b21fc4a Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. by Chandler Carruth · 14 years ago
  96. d9c904d Add the main scanf-parsing logic that I meant to include in my previous commit. by Ted Kremenek · 14 years ago
  97. d20b24c Add missing header file. by Ted Kremenek · 14 years ago
  98. 826a345 Add most of the boilerplate support for scanf format string checking. This includes by Ted Kremenek · 14 years ago
  99. bee05c1 Add builtin definition for scanf, including extending the builtin encoding to by Ted Kremenek · 14 years ago
  100. 6d7cfd7 Fix for PR3800: make sure not to evaluate the expression for a read-write by Eli Friedman · 14 years ago