1. 609508c Driver/Darwin: Darwin uses -fobjc-legacy-dispatch on ARM. by Daniel Dunbar · 15 years ago
  2. 984eb86 Driver/Frontend: Add support for -fobjc-legacy-dispatch, not yet used. by Daniel Dunbar · 15 years ago
  3. b9f7096 Don't explicitly force utf strings into the __TEXT,__ustring by Chris Lattner · 15 years ago
  4. 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 · 15 years ago
  5. 342fec4 Note that an overload candidate was non-viable because template argument by John McCall · 15 years ago
  6. d17e340 Fix for PR5185. C99 [*] VLA notation should be disallowed in function definitions. by Sam Weinig · 15 years ago
  7. b13b737 Access checking for implicit user-defined conversions. by John McCall · 15 years ago
  8. 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 · 15 years ago
  9. 0938026 Diagnose binding a non-const reference to a vector element. by Anders Carlsson · 15 years ago
  10. 038cc39 Fix PR6159 and several other problems with value-dependent non-type template by Chandler Carruth · 15 years ago
  11. 9db7dbb Rework base and member initialization in constructors, with several by Douglas Gregor · 15 years ago
  12. 966146e Remove the SmallVectors from AsmStmt. Fixes PR6105. by Anders Carlsson · 15 years ago
  13. ff93dbd Use IdentifierInfo * instead of std::string for the AsmStmt names. by Anders Carlsson · 15 years ago
  14. 807b061 ASTUnit: Ensure the CompilerInvocation object used in LoadFromCommandLine is by Daniel Dunbar · 15 years ago
  15. 6228ca0 CompilerInstance: Change to not contain the CompilerInvocation object. by Daniel Dunbar · 15 years ago
  16. acb6bcb Even more AsmStmt cleanup. by Anders Carlsson · 15 years ago
  17. a5a79f7 More asm cleanup. by Anders Carlsson · 15 years ago
  18. fdba9c0 Combine AsmStmt::setOutputsAndInputs and AsmStmt::setClobbers. by Anders Carlsson · 15 years ago
  19. 83c021c Yay for more StringRefs. by Anders Carlsson · 15 years ago
  20. f959fb5 StringRef-ize the TargetInfo::ConstraintInfo constructor. by Anders Carlsson · 15 years ago
  21. 01aefc6 Recognize 'q' as a format length modifier (from BSD). by Daniel Dunbar · 15 years ago
  22. f22d1fd Use StringRef instead of returning a temporary std::string. by Benjamin Kramer · 15 years ago
  23. 500f189 Silence clang++ warning. by Benjamin Kramer · 15 years ago
  24. 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
  25. 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
  26. f88c8e0 Switch Sema over to using the new implementation of format string by Ted Kremenek · 15 years ago
  27. 4dcb18f Enhancements to the alternate (WIP) format string checking: by Ted Kremenek · 15 years ago
  28. ef06e24 Fix reference-binding when we have a reference to const volatile type; by Douglas Gregor · 15 years ago
  29. ddc6b66 Fix typo found by clang++. Yay for -Wuninitialized. by Benjamin Kramer · 15 years ago
  30. 4e1c181 Add getters. by Anders Carlsson · 15 years ago
  31. 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
  32. 808015a Alternate format string checking: issue warnings for incomplete format specifiers. by Ted Kremenek · 15 years ago
  33. 26ac2e0 Alternate format string checking: issue a warning for invalid conversion specifiers. by Ted Kremenek · 15 years ago
  34. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 15 years ago
  35. 80cd64a Do a little magic and a little greasework to make it much more efficient by John McCall · 15 years ago
  36. e82d804 Alternate format string checking: warn of '%n' as being potentially insecure. by Ted Kremenek · 15 years ago
  37. 0d27735 Add precision/field width checking to AlternateCheckPrintfString(). by Ted Kremenek · 15 years ago
  38. 51c6d38 When printing diagnostics in c-index-test, also print source ranges by Douglas Gregor · 15 years ago
  39. 233a641 Access control for surrogate function calls. Required a moderately gross hack by John McCall · 15 years ago
  40. d93256e Introduce serialization and deserialization of diagnostic information by Douglas Gregor · 15 years ago
  41. a8d8fec Add position of conversion specifier character to 'ConversionSpecifier'. by Ted Kremenek · 15 years ago
  42. 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
  43. 7e20ffe Fixes a rewrite bug rewriting nested ivars reference. (Radar 7583971). by Fariborz Jahanian · 15 years ago
  44. d5f2096 Allow HandleFormatSpecifier() to indicate that no more processing of the format string is desired. by Ted Kremenek · 15 years ago
  45. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
  46. c7cbb9b Add '@' conversion specifier. by Ted Kremenek · 15 years ago
  47. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  48. 8f0a1c7 Add skeleton for a more structured way to analyzing pring format by Ted Kremenek · 15 years ago
  49. 78acdbf Move more naming conventions logic out of the retain/release checker to CocoaConventions.h. by Ted Kremenek · 15 years ago
  50. 8b752f1 Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, by Ken Dyck · 15 years ago
  51. 9d883b5 Silence a GCC warning about uninitialized variables. The first user of this by Chandler Carruth · 15 years ago
  52. a64e89b Start pulling out pieces of the monolithic retain/release checker into by Ted Kremenek · 15 years ago
  53. 3a18917 It's not Explicit anymore. by Anders Carlsson · 15 years ago
  54. c373d48 Implement access control for overloaded functions. Suppress access control by John McCall · 15 years ago
  55. f7b3374 Support -marm by treating it as an alias for -mno-thumb. by Daniel Dunbar · 15 years ago
  56. 5cc0251 Driver/Darwin: Disallow -m{macosx,iphoneos}-version-min as -Xarch arguments. by Daniel Dunbar · 15 years ago
  57. 13e635c Add const version of ObjCMethodDecl::getCanonicalDecl(). by Ted Kremenek · 15 years ago
  58. 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
  59. 9705309 Move 'LocalCheckers.h' to the 'Checkers' subdirectory. by Ted Kremenek · 15 years ago
  60. f12d319 Move 'include/Checkers/PathSensitive/Checkers' directory to 'include/Checkers'. by Ted Kremenek · 15 years ago
  61. 013af39 Patch to add 'volatile' to first argument of all by Fariborz Jahanian · 15 years ago
  62. 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
  63. 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
  64. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
  65. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
  66. 3bb9269 Use the right definition when emitting a global variable. Fixes PR5564. by Anders Carlsson · 15 years ago
  67. 16e20cc Correct cut-and-paste error in doxygen comment for newly introduced by Ken Dyck · 15 years ago
  68. 86fa431 Add getTypeAlignInChars() for use in code that works in alignments in character by Ken Dyck · 15 years ago
  69. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
  70. b896f62 Replace inheritance of RegionRawOffset from std::pair with two private member by Ken Dyck · 15 years ago
  71. 7534516 Avoid some unnecessary copying of unresolved lookup results. by John McCall · 15 years ago
  72. 6e26689 Preserve access bits through overload resolution much better. Some by John McCall · 15 years ago
  73. e69517c Introduce clang_getInstantiationLocationOffset(), which decomposes a by Douglas Gregor · 15 years ago
  74. 816bc31 Driver/Darwin: Honor IPHONEOS_DEPLOYMENT_TARGET. by Daniel Dunbar · 15 years ago
  75. 7a6ae74 Warn on top-level 'asm volatile' (instead of misparsing it). by John McCall · 15 years ago
  76. 6b67630 Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugReporter' by Ted Kremenek · 15 years ago
  77. 326be56 Add missing header. by Ted Kremenek · 15 years ago
  78. 1309f9a Split libAnalysis into two libraries: libAnalysis and libChecker. by Ted Kremenek · 15 years ago
  79. 3bd54cc ASTUnit: Don't check that input files exist when parsing ASTs from the command by Daniel Dunbar · 15 years ago
  80. fd9f234 Update comment. by Daniel Dunbar · 15 years ago
  81. 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
  82. 0757c8c Implement [dcl.fct.spec]p6. by Anders Carlsson · 15 years ago
  83. 8a8fa25 Ok, turn back off -Wunreachable-code by default. by Mike Stump · 15 years ago
  84. 8b00be5 Mark PartialDiagnostic.h as a C++ header by Sebastian Redl · 15 years ago
  85. 703e394 Implement instantiation of AsmStmts (Crazy, I know) by Anders Carlsson · 15 years ago
  86. a57259e Tweak clang_visitChildren comment. by Daniel Dunbar · 15 years ago
  87. 1efcf3d Index.h: Tweak comments, delete trailing whitespace, fix a few typos, etc. by Daniel Dunbar · 15 years ago
  88. 7e52de4 fix PR6034, a crash on invalid where the switch stack would get unbalanced. by Chris Lattner · 15 years ago
  89. 31819f5 add a prototype for __builtin_fpclassify. We don't know how to by Chris Lattner · 15 years ago
  90. 1b36a2f Use new initialization code when dealing with [dcl.init.aggr]p12. This fixes the bug where array elements and member initializers weren't copied correctly. by Anders Carlsson · 15 years ago
  91. b9ea98e Temporary flip default for -Wunreachable-code so some bots can test it by Mike Stump · 15 years ago
  92. e6dddfd Add bzero builtin; this should help codegen quality for code using this by Eli Friedman · 15 years ago
  93. e876419 Fix typo. by Anders Carlsson · 15 years ago
  94. 23e1ad0 Add doxygen comment to clang_getClangVersion(). by Ted Kremenek · 15 years ago
  95. 258b203 Produce a special diagnostic when users call a function with an argument of by John McCall · 15 years ago
  96. a729bbb Fix the EntityKind order so that all entity kinds that can be copied (using copy constructors) come first. Also, fix a bug where EK_New was left out of the err_init_conversion_failed diagnostic (It is now reported as 'new value'). Please review Doug :) by Anders Carlsson · 15 years ago
  97. 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 15 years ago
  98. a18f1b8 Rename getClangFullVendorVersion() to getClangFullVersion(). by Ted Kremenek · 15 years ago
  99. 92f8831 Implement elementary access control. by John McCall · 15 years ago
  100. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago