1. 0b6bc8b When a function or variable somehow depends on a type or declaration by Douglas Gregor · 14 years ago
  2. 5d26bc0 Add skeleton of flat store manager. by Zhongxing Xu · 14 years ago
  3. a1a396d Implement Doug's suggestion. Eliminate the Stmts pointer from CXXTryStmt and instead allocate the statements after the object. by Sam Weinig · 14 years ago
  4. 8767cbc Driver: Add -[no-]integrated-as for clang. by Daniel Dunbar · 14 years ago
  5. b0e4cb6 Remove the SmallVector from CXXTryStmt. by Sam Weinig · 14 years ago
  6. a8fa96e Numerous changes to selector handling: by David Chisnall · 14 years ago
  7. da1573f clang -cc1: Wire up -emit-obj, for emitting object files. by Daniel Dunbar · 14 years ago
  8. 09cc141 Remove abstract expression kinds from the StmtClass enum. Update a few users by John McCall · 14 years ago
  9. 2f764f1 Fix DeclContext of an objective-c @catch variable by Fariborz Jahanian · 14 years ago
  10. 3905367 Driver/Darwin: Don't error/warn on conflicting deployment targets. Apparently by Daniel Dunbar · 14 years ago
  11. 7bb12da Extract a common base class between UnresolvedLookupExpr and by John McCall · 14 years ago
  12. 88aad88 this is reasonably complete by now. by Chris Lattner · 14 years ago
  13. 5920dbb Improve the diagnostic used when an incompatible overload set is passed by John McCall · 14 years ago
  14. 4ed5d91 Implement PR6180, substantially improving the diagnostics we get from by Chris Lattner · 14 years ago
  15. 677e4fe Improve handling of enumerator values for C and C++, including: by Douglas Gregor · 14 years ago
  16. 609508c Driver/Darwin: Darwin uses -fobjc-legacy-dispatch on ARM. by Daniel Dunbar · 14 years ago
  17. 984eb86 Driver/Frontend: Add support for -fobjc-legacy-dispatch, not yet used. by Daniel Dunbar · 14 years ago
  18. b9f7096 Don't explicitly force utf strings into the __TEXT,__ustring by Chris Lattner · 14 years ago
  19. 31310a2 In C++, an initializer on a variable doesn't necessarily mean it's the definition. With that in mind, rename getDefinition to getAnyInitializer (to distinguish it from getInit) and reimplement it in terms of isThisDeclarationADefinition. Update all code to use this new function. by Sebastian Redl · 14 years ago
  20. 342fec4 Note that an overload candidate was non-viable because template argument by John McCall · 14 years ago
  21. d17e340 Fix for PR5185. C99 [*] VLA notation should be disallowed in function definitions. by Sam Weinig · 14 years ago
  22. b13b737 Access checking for implicit user-defined conversions. by John McCall · 14 years ago
  23. e9d12b6 Add VarDecl::isThisDeclarationADefinition(), which properly encapsulates the logic for when a variable declaration is a (possibly tentativ) definition. Add a few functions building on this, and shift C tentative definition handling over to this new functionality. This shift also kills the Sema::TentativeDefinitions map and instead simply stores all declarations in the renamed list. The correct handling for multiple tentative definitions is instead shifted to the final walk of the list. by Sebastian Redl · 14 years ago
  24. 0938026 Diagnose binding a non-const reference to a vector element. by Anders Carlsson · 14 years ago
  25. 038cc39 Fix PR6159 and several other problems with value-dependent non-type template by Chandler Carruth · 14 years ago
  26. 9db7dbb Rework base and member initialization in constructors, with several by Douglas Gregor · 14 years ago
  27. 966146e Remove the SmallVectors from AsmStmt. Fixes PR6105. by Anders Carlsson · 15 years ago
  28. ff93dbd Use IdentifierInfo * instead of std::string for the AsmStmt names. by Anders Carlsson · 15 years ago
  29. 807b061 ASTUnit: Ensure the CompilerInvocation object used in LoadFromCommandLine is by Daniel Dunbar · 15 years ago
  30. 6228ca0 CompilerInstance: Change to not contain the CompilerInvocation object. by Daniel Dunbar · 15 years ago
  31. acb6bcb Even more AsmStmt cleanup. by Anders Carlsson · 15 years ago
  32. a5a79f7 More asm cleanup. by Anders Carlsson · 15 years ago
  33. fdba9c0 Combine AsmStmt::setOutputsAndInputs and AsmStmt::setClobbers. by Anders Carlsson · 15 years ago
  34. 83c021c Yay for more StringRefs. by Anders Carlsson · 15 years ago
  35. f959fb5 StringRef-ize the TargetInfo::ConstraintInfo constructor. by Anders Carlsson · 15 years ago
  36. 01aefc6 Recognize 'q' as a format length modifier (from BSD). by Daniel Dunbar · 15 years ago
  37. f22d1fd Use StringRef instead of returning a temporary std::string. by Benjamin Kramer · 15 years ago
  38. 500f189 Silence clang++ warning. by Benjamin Kramer · 15 years ago
  39. d635c5f Add basic type checking of format string conversion specifiers and their arguments. Thanks to Cristian Draghici for his help with this patch! by Ted Kremenek · 15 years ago
  40. 33567d2 Per a suggestion from Cristian Draghici, add a method to FormatSpecifier that returns the expected type of the matching data argument. It isn't complete, but should handle several of the important cases. by Ted Kremenek · 15 years ago
  41. f88c8e0 Switch Sema over to using the new implementation of format string by Ted Kremenek · 15 years ago
  42. 4dcb18f Enhancements to the alternate (WIP) format string checking: by Ted Kremenek · 15 years ago
  43. ef06e24 Fix reference-binding when we have a reference to const volatile type; by Douglas Gregor · 15 years ago
  44. ddc6b66 Fix typo found by clang++. Yay for -Wuninitialized. by Benjamin Kramer · 15 years ago
  45. 4e1c181 Add getters. by Anders Carlsson · 15 years ago
  46. e6d2a53 Simplify EmitLValueForField - we can get whether the field is part of a union or not from the FieldDecl (through its DeclContext). by Anders Carlsson · 15 years ago
  47. 808015a Alternate format string checking: issue warnings for incomplete format specifiers. by Ted Kremenek · 15 years ago
  48. 26ac2e0 Alternate format string checking: issue a warning for invalid conversion specifiers. by Ted Kremenek · 15 years ago
  49. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 15 years ago
  50. 80cd64a Do a little magic and a little greasework to make it much more efficient by John McCall · 15 years ago
  51. e82d804 Alternate format string checking: warn of '%n' as being potentially insecure. by Ted Kremenek · 15 years ago
  52. 0d27735 Add precision/field width checking to AlternateCheckPrintfString(). by Ted Kremenek · 15 years ago
  53. 51c6d38 When printing diagnostics in c-index-test, also print source ranges by Douglas Gregor · 15 years ago
  54. 233a641 Access control for surrogate function calls. Required a moderately gross hack by John McCall · 15 years ago
  55. d93256e Introduce serialization and deserialization of diagnostic information by Douglas Gregor · 15 years ago
  56. a8d8fec Add position of conversion specifier character to 'ConversionSpecifier'. by Ted Kremenek · 15 years ago
  57. d2dcece Rename namespace clang::printf to clang::analyze_printf to avoid problems where the reference to 'printf' is ambiguous. by Ted Kremenek · 15 years ago
  58. 7e20ffe Fixes a rewrite bug rewriting nested ivars reference. (Radar 7583971). by Fariborz Jahanian · 15 years ago
  59. d5f2096 Allow HandleFormatSpecifier() to indicate that no more processing of the format string is desired. by Ted Kremenek · 15 years ago
  60. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
  61. c7cbb9b Add '@' conversion specifier. by Ted Kremenek · 15 years ago
  62. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  63. 8f0a1c7 Add skeleton for a more structured way to analyzing pring format by Ted Kremenek · 15 years ago
  64. 78acdbf Move more naming conventions logic out of the retain/release checker to CocoaConventions.h. by Ted Kremenek · 15 years ago
  65. 8b752f1 Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, by Ken Dyck · 15 years ago
  66. 9d883b5 Silence a GCC warning about uninitialized variables. The first user of this by Chandler Carruth · 15 years ago
  67. a64e89b Start pulling out pieces of the monolithic retain/release checker into by Ted Kremenek · 15 years ago
  68. 3a18917 It's not Explicit anymore. by Anders Carlsson · 15 years ago
  69. c373d48 Implement access control for overloaded functions. Suppress access control by John McCall · 15 years ago
  70. f7b3374 Support -marm by treating it as an alias for -mno-thumb. by Daniel Dunbar · 15 years ago
  71. 5cc0251 Driver/Darwin: Disallow -m{macosx,iphoneos}-version-min as -Xarch arguments. by Daniel Dunbar · 15 years ago
  72. 13e635c Add const version of ObjCMethodDecl::getCanonicalDecl(). by Ted Kremenek · 15 years ago
  73. fee9081 Teach RegionStore to handle initialization of incomplete arrays in structures using a compound value. Fixes <rdar://problem/7515938>. by Ted Kremenek · 15 years ago
  74. 9705309 Move 'LocalCheckers.h' to the 'Checkers' subdirectory. by Ted Kremenek · 15 years ago
  75. f12d319 Move 'include/Checkers/PathSensitive/Checkers' directory to 'include/Checkers'. by Ted Kremenek · 15 years ago
  76. 013af39 Patch to add 'volatile' to first argument of all by Fariborz Jahanian · 15 years ago
  77. 7783bfc Bring some semblance of order into Decl.h and Decl.cpp. While at it, fix some typo comments and remove an unused and unimplemented function prototype. No functionality change. by Sebastian Redl · 15 years ago
  78. 16b55a7 Implement 'clang_getInclusions()' in CIndex. This API allows clients to walk the set of files included in a translation unit via the C API. by Ted Kremenek · 15 years ago
  79. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
  80. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
  81. 3bb9269 Use the right definition when emitting a global variable. Fixes PR5564. by Anders Carlsson · 15 years ago
  82. 16e20cc Correct cut-and-paste error in doxygen comment for newly introduced by Ken Dyck · 15 years ago
  83. 86fa431 Add getTypeAlignInChars() for use in code that works in alignments in character by Ken Dyck · 15 years ago
  84. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
  85. b896f62 Replace inheritance of RegionRawOffset from std::pair with two private member by Ken Dyck · 15 years ago
  86. 7534516 Avoid some unnecessary copying of unresolved lookup results. by John McCall · 15 years ago
  87. 6e26689 Preserve access bits through overload resolution much better. Some by John McCall · 15 years ago
  88. e69517c Introduce clang_getInstantiationLocationOffset(), which decomposes a by Douglas Gregor · 15 years ago
  89. 816bc31 Driver/Darwin: Honor IPHONEOS_DEPLOYMENT_TARGET. by Daniel Dunbar · 15 years ago
  90. 7a6ae74 Warn on top-level 'asm volatile' (instead of misparsing it). by John McCall · 15 years ago
  91. 6b67630 Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugReporter' by Ted Kremenek · 15 years ago
  92. 326be56 Add missing header. by Ted Kremenek · 15 years ago
  93. 1309f9a Split libAnalysis into two libraries: libAnalysis and libChecker. by Ted Kremenek · 15 years ago
  94. 3bd54cc ASTUnit: Don't check that input files exist when parsing ASTs from the command by Daniel Dunbar · 15 years ago
  95. fd9f234 Update comment. by Daniel Dunbar · 15 years ago
  96. 7a6e13a Fix a pretty bad bug where if a constructor (or conversion function) was marked as 'explicit', but then defined out-of-line, we would not treat it as being explicit. by Anders Carlsson · 15 years ago
  97. 0757c8c Implement [dcl.fct.spec]p6. by Anders Carlsson · 15 years ago
  98. 8a8fa25 Ok, turn back off -Wunreachable-code by default. by Mike Stump · 15 years ago
  99. 8b00be5 Mark PartialDiagnostic.h as a C++ header by Sebastian Redl · 15 years ago
  100. 703e394 Implement instantiation of AsmStmts (Crazy, I know) by Anders Carlsson · 15 years ago