1. 3ab1555 PR10867: Work around a bug in lit. Multiple RUN: lines are joined with &&, so: by Richard Smith · 14 years ago
  2. acbdc57 Improve overloaded function handling in the typo correction code. by Kaelyn Uhrain · 14 years ago
  3. 5ff4e98 Introduce a Fix-It for the "missing sentinel" warning, adding an by Douglas Gregor · 14 years ago
  4. 964f4c61 Add a fixit for removal of unused label. by Anna Zaks · 14 years ago
  5. 67a7048 Another test case for the &/* mismatch fixit. by Anna Zaks · 14 years ago
  6. 3b40271 Add */& mismatch fixit generation to the Sema::DiagnoseAssignmentResult(). by Anna Zaks · 14 years ago
  7. 6507135e Provide fixit for static use of objective-c type by Fariborz Jahanian · 14 years ago
  8. 9a14c21 objective-c: Provide a 'fixit' when class was used by Fariborz Jahanian · 14 years ago
  9. b21138f Add FixIt hint for missing 'id' type. // rdar://9615045 by Fariborz Jahanian · 14 years ago
  10. 9ccf84e Addressing code review comments for commit 135509 - Add FixItHints in case a C++ function call is missing * or & operators on by Anna Zaks · 14 years ago
  11. df92ddf Add FixItHints in case a C++ function call is missing * or & operators on one/several of it's parameters (addresses http://llvm.org/PR5941). by Anna Zaks · 14 years ago
  12. 5cf0e15 Add a hackaround to avoid the crash in PR10355. However, our recovery by Douglas Gregor · 14 years ago
  13. 3b22a88 When adding boolean keywords for typo correction, add either "bool" or by Douglas Gregor · 14 years ago
  14. c2fa169 Add support for C++ namespace-aware typo correction, e.g., correcting by Douglas Gregor · 14 years ago
  15. c297cd8 Provide fix-it for '.' <-> '->' for Objective-C ivar/property access. by Fariborz Jahanian · 14 years ago
  16. 3ea4adb Allow the fixit for missing ':' in the ?: ternary operator if it is pointing by Argyrios Kyrtzidis · 14 years ago
  17. f897d3b Fixed test case asserts due to checkin of r130710. by Chad Rosier · 14 years ago
  18. 8b02cd0 Extend Sema::ClassifyName() to support C++, ironing out a few issues by Douglas Gregor · 14 years ago
  19. ae79fdf Fix test by Douglas Gregor · 14 years ago
  20. 5e16c16 Improve diagnostics for typo correction via Sema::ClassifyName(), by by Douglas Gregor · 14 years ago
  21. 0e7dde5 Implement a new identifier-classification scheme where Sema by Douglas Gregor · 14 years ago
  22. 1f32940 Fixit suggestion for adding missing tag name should have a space after the tag name. Fixes rdar://9295072 by Argyrios Kyrtzidis · 14 years ago
  23. dda56e4 Support for C++11 (non-template) alias declarations. by Richard Smith · 14 years ago
  24. 3867554 Issue the 2nd fixit even if fix-it hint is supressed. // rdar://9091893 by Fariborz Jahanian · 14 years ago
  25. e72509c No fixit hint for builtin expressions which are by Fariborz Jahanian · 14 years ago
  26. 4e7a2c0 Improve recovery (error + fix-it) when parsing type dependent template name without the "template" keyword. by Francois Pichet · 14 years ago
  27. bb6db56 Provide Fixit warning when 'auto' is intended as storage by Fariborz Jahanian · 14 years ago
  28. f05c095 Remove the Fix-It for "main must return 'int'", which is not always by Douglas Gregor · 14 years ago
  29. 19ead87 Disable this test until we figure out what madness it causes by Douglas Gregor · 15 years ago
  30. bb55f6b Sign by Douglas Gregor · 15 years ago
  31. 9c0672f I hate this test by Douglas Gregor · 15 years ago
  32. fc0862d Something is seriously wonky with this test by Douglas Gregor · 15 years ago
  33. 415ce06 Fix silly typo by Douglas Gregor · 15 years ago
  34. 2a1d72d Teach typo correction not to return the same keyword that matches a by Douglas Gregor · 15 years ago
  35. 21836f7 Minor tweak so that fixit-errors.c is never compiled; it crashes and pops up a crash dialog on my system. by Anders Carlsson · 15 years ago
  36. d507d77 Fix handling of property and ivar lookup in typo correction; the two by Douglas Gregor · 15 years ago
  37. 9b2f537 Disable this test while I track down the platform-specific issue by Douglas Gregor · 15 years ago
  38. 30bb275 Bah, incompetence by Douglas Gregor · 15 years ago
  39. 1f32ebe Eliminate another ordering dependency in typo correction. Re-enable typo.m, which seems to be working properly. by Douglas Gregor · 15 years ago
  40. bafff22 Disable this test again, which naturally fails on every platform except the one I'm building with by Douglas Gregor · 15 years ago
  41. 26c5578 When performing typo correction, keep track of whether the last lookup by Douglas Gregor · 15 years ago
  42. 2a40aba Disable type.m while failures are investigated. by Daniel Dunbar · 15 years ago
  43. 1837dbd Make test more consistent. by Daniel Dunbar · 15 years ago
  44. b5c7c51 When we encounter a '==' in a context expecting a '=', assume the user made a typo: by Argyrios Kyrtzidis · 15 years ago
  45. 6d76e6c Better diagnostic for superfluous scope specifier inside a class definition for member functions. + Fixit. by Francois Pichet · 15 years ago
  46. 196cf88 Update test by Douglas Gregor · 15 years ago
  47. 29d907d When we run into an error parsing or type-checking the left-hand side by Douglas Gregor · 15 years ago
  48. abf4a3e Implement automatic bracket insertion for Objective-C class message by Douglas Gregor · 15 years ago
  49. 3e97200 Handle bracket insertion for Objective-C class messages in a very by Douglas Gregor · 15 years ago
  50. 7617c7d Extend bracket insertion to message sends to "super", e.g., by Douglas Gregor · 15 years ago
  51. d6d9800 Extend bracket insertion to handle nullary selectors, e.g. by Douglas Gregor · 15 years ago
  52. e9bba4f Implement bracket insertion for Objective-C instance message sends as by Douglas Gregor · 15 years ago
  53. 80c2183 add a fixit when 'main' does ot return 'int'; review welcome by Gabor Greif · 15 years ago
  54. 45d6bdf Improve recovery when there is a stray ']' or ')' before the ';' at by Douglas Gregor · 15 years ago
  55. ce66d02 Improve recovery when a comma is missing between enumerators in an by Douglas Gregor · 15 years ago
  56. 3465e26 Improve diagnostic and recovery when missing a comma between base or by Douglas Gregor · 15 years ago
  57. a05f5ab When complaining about a duplicate declspec, provide a Fix-It that by Douglas Gregor · 15 years ago
  58. 8ed0c0b Introduce -f{no-}spell-checking options to enable/disable by Douglas Gregor · 15 years ago
  59. 6969fb7 Fix broken testcase by Douglas Gregor · 15 years ago
  60. 9629e9a Typo correction for namespace alias definitions by Douglas Gregor · 15 years ago
  61. cdf8702 Allow a using directive to refer to the implicitly-defined namespace by Douglas Gregor · 15 years ago
  62. 952cf94 Tweak test for non-64-bit Darwin by Douglas Gregor · 15 years ago
  63. 990ccac When we see the a '[' in a postfix expression in Objective-C, perform by Douglas Gregor · 15 years ago
  64. 8b6be16 Fix typo test case by Douglas Gregor · 15 years ago
  65. 86ad085 Give a slight edge to the context-sensitive keyword 'super' over by Douglas Gregor · 15 years ago
  66. 5fd04d4 Tweak typo-correction logic a bit regarding "super", so that we by Douglas Gregor · 15 years ago
  67. 990783e Clean up test case and remove XFAIL. This test can now distinguish between by Ted Kremenek · 15 years ago
  68. 784fad7 Teach clang -fixit to modify files in-place, or -fixit=suffix to create new by Nick Lewycky · 15 years ago
  69. 0151b7e fix the ?: fixit that ted added to recover properly. by Chris Lattner · 15 years ago
  70. 0b59e80 When searching for code-completion and typo-correction candidates, by Douglas Gregor · 15 years ago
  71. a1e20de Teach -fixit to modify all of its inputs instead of just the main file, unless by Nick Lewycky · 15 years ago
  72. 2fb18b7 Thread a Scope pointer into BuildRecoveryCallExpr to help typo by Douglas Gregor · 15 years ago
  73. 280e1ee Teach typo correction about various language keywords. We can't by Douglas Gregor · 15 years ago
  74. 8aa4ebf Implement typo correction for Objective-C message sends when the by Douglas Gregor · 15 years ago
  75. e601365 Add fixit hint for missing ':' in ternary expressions. by Ted Kremenek · 15 years ago
  76. 800b66b Remove fixit for string literal comparison. Telling the user to use 'strcmp' is bad, and by Ted Kremenek · 15 years ago
  77. 3155f57 Turn access control on by default in -cc1. by John McCall · 15 years ago
  78. b10646d Improve diagnostics like "initializing <type> from an expression of by Douglas Gregor · 15 years ago
  79. c68e140 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 15 years ago
  80. d6bc5e6 When a declaration of a function is missing an exception specification by Douglas Gregor · 15 years ago
  81. 85f9055 When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 15 years ago
  82. 0c8a172 Fix a crash with ill-formed code within a method in an ill-formed by Douglas Gregor · 15 years ago
  83. f1d70ad Make this fix-it test case actually fail when there is a problem; add by Douglas Gregor · 15 years ago
  84. 98609b3 Patch to implement required warnings for unimplemented by Fariborz Jahanian · 15 years ago
  85. 712dcfe Fix the search for visible declarations within a Scope to ensure that by Douglas Gregor · 15 years ago
  86. 43a0857 When we typo-correct a base class initializer, point to the base class by Douglas Gregor · 15 years ago
  87. 6da8362 Whenever we emit a typo-correction diagnostic, also emit a note by Douglas Gregor · 15 years ago
  88. 35b0bac Implement typo correction for a variety of Objective-C-specific constructs: by Douglas Gregor · 15 years ago
  89. 4f24863 Make sure that the search for visible declarations looks into the semantic parents of out-of-line function contexts by Douglas Gregor · 15 years ago
  90. 3f8f447 Fix typo test RUN lines by Douglas Gregor · 15 years ago
  91. 2536398 When typo correction for an id-expression finds a type (or Objective-C by Douglas Gregor · 15 years ago
  92. 4e0299b Typo correction for C99 designated field initializers, e.g., by Douglas Gregor · 15 years ago
  93. 15e77a2 Typo correction for C++ base and member initializers, e.g., by Douglas Gregor · 15 years ago
  94. 103dae4 Add another typo test for nested-name-specifiers by Douglas Gregor · 15 years ago
  95. 532e68f Typo correction for identifiers within nested name specifiers, e.g., by Douglas Gregor · 15 years ago
  96. ff18cc1 Typo correction for template names, e.g., by Douglas Gregor · 15 years ago
  97. af2bd47 Typo correction for member access into classes/structs/unions, e.g., by Douglas Gregor · 15 years ago
  98. 598b08f Implement typo correction for id-expressions, e.g., by Douglas Gregor · 15 years ago
  99. 2d43530 Typo correction for type names when they appear in declarations, e.g., given by Douglas Gregor · 15 years ago
  100. 8fbe78f Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 16 years ago