1. 865d447 Draw a brighter line between "unresolved" expressions, where we have done the by John McCall · 15 years ago
  2. a7cf23a Don't issue spurious diagnostic with Obj-C fast enumeration. (radar 7409165). by Fariborz Jahanian · 15 years ago
  3. 1be3b3b Fix some default in the option classes, and some CompilerInvocation argification by Daniel Dunbar · 15 years ago
  4. f7b56fa Add missing dependency on TableGen. by Daniel Dunbar · 15 years ago
  5. c05f239 Fix 80 col. violation. by Ted Kremenek · 15 years ago
  6. a08304a Driver: Move INPUT and UNKNOWN sentinel options into the OptParser.td file. by Daniel Dunbar · 15 years ago
  7. f010b26 Driver: Add Sentinel flag to option kinds. by Daniel Dunbar · 15 years ago
  8. cb78d88 Cope with an amusingly little anomaly with dependent types and by Douglas Gregor · 15 years ago
  9. 4ad9685 Objective-C code completion within properties after "setter = " or by Douglas Gregor · 15 years ago
  10. 47cd787 Add missing init. by Daniel Dunbar · 15 years ago
  11. 8adfcff Sketch .td file and build system goop for OptTable based clang-cc options. by Daniel Dunbar · 15 years ago
  12. 847abaa Factor out OptTable::ParseArgs, for parsing an entire argument vector. by Daniel Dunbar · 15 years ago
  13. c59dc92 clang-cc: Remove some more llvm::cl::init arguments, by only setting values when by Daniel Dunbar · 15 years ago
  14. 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
  15. a0289fd Driver: Take option ID for {Input,Unknown}Option, to drop dependency on actual options. by Daniel Dunbar · 15 years ago
  16. 9e1f982 Driver: Introduce OptSpecifier class for protecting access to an option id. by Daniel Dunbar · 15 years ago
  17. e4bdae7 Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of taking a Claim argument. by Daniel Dunbar · 15 years ago
  18. b32aa51 Driver: Resolve inconsistency in matching options against options which are by Daniel Dunbar · 15 years ago
  19. 6f776b0 Remove extra ';', found by clang++. by Daniel Dunbar · 15 years ago
  20. d3c6854 Improve code completion for Objective-C message sends, so that we by Douglas Gregor · 15 years ago
  21. 64bdce3 Driver: Switch to using TableGen'erated Options.inc instead of Options.def file. by Daniel Dunbar · 15 years ago
  22. 27e738d Driver: Split OptTable out into OptTable.{h,cpp} by Daniel Dunbar · 15 years ago
  23. 54f0161 Improve code-completion results for the flags in an @property by Douglas Gregor · 15 years ago
  24. a93b108 Rename CodeCompleteObjCProperty to something more specific. No functionality change. by Douglas Gregor · 15 years ago
  25. 424b2a5 Code completion after @dynamic by Douglas Gregor · 15 years ago
  26. 322328b Code completion for Objective-C @synthesized. by Douglas Gregor · 15 years ago
  27. 05ebda9 This patch fixes a bug in misdiagnosing correct use of pointer to data member. by Fariborz Jahanian · 15 years ago
  28. a79a2b5 Driver: Rework OptTable to have no dependency on the options it manages. by Daniel Dunbar · 15 years ago
  29. 1d189e1 Driver: Store Option ID field as unsigned to drop dependency on the options by Daniel Dunbar · 15 years ago
  30. b328c42 Improve diagnostics and recovery when parsing @synthesized definitions by Douglas Gregor · 15 years ago
  31. 33ced0b Implement code completion for Objective-C category names in @interface by Douglas Gregor · 15 years ago
  32. cc5306a Improve on diagnosing type mismatches because of by Fariborz Jahanian · 15 years ago
  33. a4f6480 Driver: Switch Options.def to storing flags as a bitmask (instead of mangled by Daniel Dunbar · 15 years ago
  34. 3b49aca Code completion for Objective-C class names after @interface, by Douglas Gregor · 15 years ago
  35. 083128f Code completion after @property, providing the names of forward-declared properties by Douglas Gregor · 15 years ago
  36. 55385fe Code completion for Objective-C properly lists by Douglas Gregor · 15 years ago
  37. 7ba107a Incremental progress on using declarations. Split UnresolvedUsingDecl into by John McCall · 15 years ago
  38. 2dbdd62 Add ObjCClassDecl::getSourceRange(). by Ted Kremenek · 15 years ago
  39. 321c22f Add SourceLocations to ObjCClassDecl for the class identifiers referenced by @class. by Ted Kremenek · 15 years ago
  40. 60b01cc Rename Objective-C message send completion functions to indicate that we're referring to message sends by Douglas Gregor · 15 years ago
  41. c09cba6 Pass source locations of identifiers referenced by @class through Action::ActOnForwardClassDeclaration(). by Ted Kremenek · 15 years ago
  42. 5e530af Added block type introspection support. by David Chisnall · 15 years ago
  43. 7388555 Add clang_getNullCursor() and clang_equalCursors() (the latter for comparing cursors). by Ted Kremenek · 15 years ago
  44. 4633d1b Allow "source_filename" to be an optional argument (the client can provide NULL). This allows the client to put the source_filename in the command_line_args without fear of the file being named twice. by Ted Kremenek · 15 years ago
  45. 1ac7104 Fixes a typo, reported by Doug. by Fariborz Jahanian · 15 years ago
  46. 905d11d Make sure, for sure this time, that expressions do not have reference type by Douglas Gregor · 15 years ago
  47. 92eff46 StringRef'ify CodeCompletionString by Douglas Gregor · 15 years ago
  48. bd84058 Fix MSVC warning. by Benjamin Kramer · 15 years ago
  49. 2fc430d Eliminate TargetInfo::getDefaultLangOptions, this kind of logic is better done by Daniel Dunbar · 15 years ago
  50. 9e5cc6b Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, by Daniel Dunbar · 15 years ago
  51. 77544fd Add driver::types::isObjC predicate. by Daniel Dunbar · 15 years ago
  52. 243fde9 Add EvalEndPath interface to Checker. Now we can check memory leaked at the by Zhongxing Xu · 15 years ago
  53. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  54. 0be42c4 Move -fms-extensions defaulting to driver, instead of using getDefaultLangOptions. by Daniel Dunbar · 15 years ago
  55. 6490ae5 Silence some warnings produced by Clang, and add a missing header by Douglas Gregor · 15 years ago
  56. b3375cb Add initial cut at CompilerInvocation::toArgs, which "serializes" the CompilerInvocation into a list of arguments which can be passed to clang-cc (eventually, clang -cc1). by Daniel Dunbar · 15 years ago
  57. 9488ea1 Instead of hanging a using declaration's target decls directly off the using by John McCall · 15 years ago
  58. 049d3a0 Simplify PreprocessorOptions, it doesn't need abstracted field access. by Daniel Dunbar · 15 years ago
  59. b91c7f6 Add missing #include found by Clang by Douglas Gregor · 15 years ago
  60. 03c5705 Require the object type of a member access expression ("." or "->") to by Douglas Gregor · 15 years ago
  61. 145e2ea Reorder options alphabetically. by Daniel Dunbar · 15 years ago
  62. a9be127 Remove unused program action. by Daniel Dunbar · 15 years ago
  63. 35ffe2f Rename CompilerInvocation::DiagOpts -> DiagnosticOpts for consistency. by Daniel Dunbar · 15 years ago
  64. 093333a Add missing defaults to AnalyzerOptions. by Daniel Dunbar · 15 years ago
  65. 1b483e7 Remove unused IsCXXAware and IgnoreSysRoots option from HeaderSearchOptions::Entry. by Daniel Dunbar · 15 years ago
  66. 9f853df Unify the way destructor epilogues are generated for synthesized and regular destructors. Also fix PR5529. by Anders Carlsson · 15 years ago
  67. 6a45c2b Add a comment. by Zhongxing Xu · 15 years ago
  68. fa1a06e When querying type qualifiers on QualType via one of the "non-local" by Douglas Gregor · 15 years ago
  69. a661bee Remove extra space in warn_maynot_respond diagnostic. Fixes <rdar://problem/7364274>. by Ted Kremenek · 15 years ago
  70. c363cb1 Store more information in HeaderSearchOptions so that its initialization is not by Daniel Dunbar · 15 years ago
  71. a4923eb First part of changes to eliminate problems with cv-qualifiers and by Douglas Gregor · 15 years ago
  72. d651141 Fix condition in LocationCheck::classof(). Thanks to Marius Wachtler for pointing this out! by Ted Kremenek · 15 years ago
  73. 63e963c Handle case of missing '@end' in implementation context by Fariborz Jahanian · 15 years ago
  74. 652be34 * Do the same thing to the basicstore as in r84163. by Zhongxing Xu · 15 years ago
  75. 6d70139 Make sure that virtual destructors have delete operators. by Anders Carlsson · 15 years ago
  76. 70f5bc7 Add DeclarationName::dump(). by Anders Carlsson · 15 years ago
  77. 5072430 If we find a deallocation function in the class scope, but it is a placement function we should not look for a deallocation function in the global scope. by Anders Carlsson · 15 years ago
  78. 539e9b1 Make a couple more headers standalone by Douglas Gregor · 15 years ago
  79. 88f0d00 Remove an obviously-broken header, which still tries to refer to ScopedDecl. by Douglas Gregor · 15 years ago
  80. a610663 Make some more headers standalone by Douglas Gregor · 15 years ago
  81. d58c03f Add TargetOptions and use it when constructing targets. by Daniel Dunbar · 15 years ago
  82. 7745cab Make a few headers parse standalone by Douglas Gregor · 15 years ago
  83. d10c5b8 Add pluggable action support to clang-cc, via -plugin command line option. by Daniel Dunbar · 15 years ago
  84. 9a8a83b Move the program action enum to FrontendOptions. by Daniel Dunbar · 15 years ago
  85. d02e232 Change *BugReport constructors to take StringRefs. by Benjamin Kramer · 15 years ago
  86. 5f3b997 Add FrontendActions for all preprocessor based clang-cc actions. by Daniel Dunbar · 15 years ago
  87. 8305d01 Add FrontendActions, which provides a FrontendAction interface to all the existing AST consumer based clang-cc actions. by Daniel Dunbar · 15 years ago
  88. 4ee2409 Add FrontendAction interface, for encapsulating a "clang-cc" style action. by Daniel Dunbar · 15 years ago
  89. 221c721 Shuffle VerifyDiagnosticsClient API to be less fragile. by Daniel Dunbar · 15 years ago
  90. ccb6cb6 Add CompilerInstance::InitializeSourceManager. by Daniel Dunbar · 15 years ago
  91. 79b55f9 Turn -fixit it back into a mode, but make -fixit-at imply that mode this time by Daniel Dunbar · 15 years ago
  92. 81f5a1e Add VerifyDiagnosticsClient, to replace old -verify. by Daniel Dunbar · 15 years ago
  93. 7d90199 Pass Preprocessor through DiagnosticClient::BeginSourceFile. by Daniel Dunbar · 15 years ago
  94. 12ce694 Add ASTConsumer to CompilerInstance. by Daniel Dunbar · 15 years ago
  95. 66724ea If we attempt to add a constructor template specialization that looks by Douglas Gregor · 15 years ago
  96. 0ff1042 Add static version of Preprocessor::getSpelling. by Daniel Dunbar · 15 years ago
  97. 8a9f569 Move CompilerInstance::set* methods out-of-line. by Daniel Dunbar · 15 years ago
  98. 73099bf Move definition of GRExprEngine::ProcessEndPath() out-of-line. by Ted Kremenek · 15 years ago
  99. fd47648 Revert r88718, which does NOT solve the constructor-template-as-copy-constructor issue. Big thanks to John for finding this by Douglas Gregor · 15 years ago
  100. cad84b7 A constructor template cannot be instantiated to a copy by Douglas Gregor · 15 years ago