1. 1ca50c3 Fix overloading of non-static member functions that differ in their cv-qualifiers by Douglas Gregor · 16 years ago
  2. 416e46f merge 3 more diagnostics into 1. by Chris Lattner · 16 years ago
  3. af7ae4e Add the concept of "modifiers" to the clang diagnostic format by Chris Lattner · 16 years ago
  4. 3528d35 Change CheckIncrementDecrementOperand to test for common cases first by Chris Lattner · 16 years ago
  5. fc195ef Cleanup memory management in overloading of operator->, slightly by Douglas Gregor · 16 years ago
  6. 621b393 Don't print canonical types in overloading-related diagnostics by Douglas Gregor · 16 years ago
  7. 24b93f2 __weak ivar need not warn. by Fariborz Jahanian · 16 years ago
  8. 8ba1074 Add support for overloaded operator-> when used in a member access by Douglas Gregor · 16 years ago
  9. a967a6f Fix strange quote characters by Douglas Gregor · 16 years ago
  10. 69d27b9 Daniel really really likes = instead of += :) by Chris Lattner · 16 years ago
  11. f3a41af remove the last old-fashioned Diag method. Transition complete! by Chris Lattner · 16 years ago
  12. 5dc266a remove another old Diag method. by Chris Lattner · 16 years ago
  13. d3a94e2 remove another old-school Diag method. by Chris Lattner · 16 years ago
  14. 572af49 remove the type_info identifier cache. Compared to the cost by Chris Lattner · 16 years ago
  15. 8edea83 compared to the rest of the code in Sema::GetStdNamespace(), by Chris Lattner · 16 years ago
  16. 2bac0f6 remove some other identifiers that are looked up really early and only by Chris Lattner · 16 years ago
  17. 8469265 instead of looking up super at startup time, by Chris Lattner · 16 years ago
  18. 92e62b0 Rename IdentifierInfo::isName to ::isStr. Use a nifty trick by Chris Lattner · 16 years ago
  19. 2682d8b More objc gc stuff. Read/Write barriers for local static/extern, by Fariborz Jahanian · 16 years ago
  20. 106c6eb Implement the rest of C++ [over.call.object], which permits the object by Douglas Gregor · 16 years ago
  21. f9eb905 Support for calling overloaded function call operators (operator()) by Douglas Gregor · 16 years ago
  22. 487a75a Some tweaks suggested by Argiris by Douglas Gregor · 16 years ago
  23. 77407b8 Take care another assert: by Argyrios Kyrtzidis · 16 years ago
  24. 337c6b9 Support overloading of the subscript operator[], including support for by Douglas Gregor · 16 years ago
  25. 5cb93b8 Fix <rdar://problem/6150376> [sema] crash on invalid message send. by Steve Naroff · 16 years ago
  26. 7425373 Added operator overloading for unary operators, post-increment, and by Douglas Gregor · 16 years ago
  27. 0655039 Fix silly code, use IdentifierInfo* instead of std::string in by Daniel Dunbar · 16 years ago
  28. 3c73c41 stop calling II::getName() unnecesarily in sema by Chris Lattner · 16 years ago
  29. 43b628c Allow sending IdentifierInfo*'s into Diagnostics without turning them into strings by Chris Lattner · 16 years ago
  30. 8365223 convert some diags to use numbers instead of strings. by Chris Lattner · 16 years ago
  31. 30bc965 add direct support for signed and unsigned integer arguments to diagnostics. by Chris Lattner · 16 years ago
  32. dcd5ef1 remove one more old-style Diag method. by Chris Lattner · 16 years ago
  33. fa25bbb Switch several more Sema Diag methods over. This simplifies the by Chris Lattner · 16 years ago
  34. 447b69e Built-in equality and relational operators have return type "bool" in C++, by Douglas Gregor · 16 years ago
  35. 96176b3 Partial expansion of C++ operator overloading (for binary operators) by Douglas Gregor · 16 years ago
  36. c9c7c4e start converting Sema over to using its canonical Diag method. by Chris Lattner · 16 years ago
  37. ebf5ddf introduce the one true Diag method for Sema. Next up: kill all the others off. by Chris Lattner · 16 years ago
  38. cfe8bf3 Fix <rdar://problem/6329769> [sema] crash on duplication definition of interface with protocols. by Steve Naroff · 16 years ago
  39. 10c4262 As threatened previously: consolidate name lookup and the creation of by Douglas Gregor · 16 years ago
  40. e94ca9e4 Extend DeclarationName to support C++ overloaded operators, e.g., by Douglas Gregor · 16 years ago
  41. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  42. 46bbaca Attribute nonnull can be applied to block pointers. by Ted Kremenek · 16 years ago
  43. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
  44. 29a1cfb minor cleanups and tidying, no functionality change. by Chris Lattner · 16 years ago
  45. 858bb6f implement a fixme by making warnings for ++/-- on non-modifiable-lvalues better. by Chris Lattner · 16 years ago
  46. f67bd9f factor some code out into a helper function by Chris Lattner · 16 years ago
  47. a11f42f Implement effects of 'mutable', and a few comments from Chris on its parsing. by Sebastian Redl · 16 years ago
  48. 10bd368 Eliminate all of the placeholder identifiers used for constructors, by Douglas Gregor · 16 years ago
  49. 87d3ef0 Fix <rdar://problem/6333904> [sema] message lookup on super is incorrect by Steve Naroff · 16 years ago
  50. 2def483 Updated IdentifierResolver to deal with DeclarationNames. The names of by Douglas Gregor · 16 years ago
  51. ca354fa Implement rdar://6319320: give a good diagnostic for cases where people by Chris Lattner · 16 years ago
  52. a8069f1 Fix <rdar://problem/6316324> [sema] spurious warning on comparison of qualified id. by Steve Naroff · 16 years ago
  53. d7612e1 Fix <rdar://problem/6320086> parser rejects block capturing ivar. by Steve Naroff · 16 years ago
  54. 43c7bad Some cleanups for C++ operator overloading by Douglas Gregor · 16 years ago
  55. 1adbab6 Simplify error messages for two-parameter overloaded increment/decrement operators by Douglas Gregor · 16 years ago
  56. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago
  57. 6ee7aa1 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 16 years ago
  58. 669d5d7 Implement parsing and semantic checking of the 'mutable' keyword. by Sebastian Redl · 16 years ago
  59. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  60. bf3af05 Some cleanup for the implementation of built-in operator by Douglas Gregor · 16 years ago
  61. 23cd0d9 don't highlight field name, just put a caret on it. by Chris Lattner · 16 years ago
  62. 7d7e672 Don't build identifiers for C++ constructors, destructors, or by Douglas Gregor · 16 years ago
  63. 67027a7 Fix a FIXME by improving a diagnostic, add a testcase for PR3048 by Chris Lattner · 16 years ago
  64. 1d353ba make TryFixInvalidVariablyModifiedType a static function. by Chris Lattner · 16 years ago
  65. 57d5788 Restructure code to encourage fallthrough, no functionality change. by Chris Lattner · 16 years ago
  66. 3ab5543 fix PR3048. I'm going to do some more work before closing it off and by Chris Lattner · 16 years ago
  67. eb8f306 Implement support for operator overloading using candidate operator by Douglas Gregor · 16 years ago
  68. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 16 years ago
  69. c42e118 Implement C++ 'typeid' parsing and sema. by Sebastian Redl · 16 years ago
  70. f1d9360 Fix cmake build, patch from Jjgod Jiang. by Daniel Dunbar · 16 years ago
  71. 1f6f54b Fix PR3031 by silencing follow-on errors in invalid declarations. by Chris Lattner · 16 years ago
  72. 904eed3 Basic support for taking the address of an overloaded function by Douglas Gregor · 16 years ago
  73. 25e7087 Remove an out-of-date FIXME by Douglas Gregor · 16 years ago
  74. cb9b977 Allow user-defined conversions during reference binding by Douglas Gregor · 16 years ago
  75. 55c6095 Don't create a typedef for the injected-class-name by Douglas Gregor · 16 years ago
  76. 02bcd4c Some cleanups to the declaration/checking of overloaded operators in C++. Thanks to Sebastian for the review by Douglas Gregor · 16 years ago
  77. 5239304 Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedDecl::getDeclContext() when there are nested-names. by Argyrios Kyrtzidis · 16 years ago
  78. 0f84a23 When a tag has nested-name ('struct foo::bar'), use not 'CurContext' but the context of the nested-name ('foo::'). by Argyrios Kyrtzidis · 16 years ago
  79. 630c81b Simplify handling of nested-names in tags ('struct foo::bar'). by Argyrios Kyrtzidis · 16 years ago
  80. ef6e647 Implement Sema support for C++ nested-name-specifiers. by Argyrios Kyrtzidis · 16 years ago
  81. eb83ecd Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parser side. by Argyrios Kyrtzidis · 16 years ago
  82. 37d6de3 Move named cast helpers out of Sema, as Chris requested. This requirse making a few functions public that weren't before. by Sebastian Redl · 16 years ago
  83. e3dc28a Greatly improve static_cast diagnostics by Sebastian Redl · 16 years ago
  84. f1991ea Initial, partially-baked support for implicit user-defined conversions by conversion functions by Douglas Gregor · 16 years ago
  85. c7ed9c6 Changes in preparation for nested-name-specifiers. by Argyrios Kyrtzidis · 16 years ago
  86. 2f1bc52 Parsing, ASTs, and semantic analysis for the declaration of conversion by Douglas Gregor · 16 years ago
  87. 48c2e90 Fix crash caused by this: by Argyrios Kyrtzidis · 16 years ago
  88. eaebc75 Initial, rudimentary implementation of operator overloading for binary by Douglas Gregor · 16 years ago
  89. 1cd1b1e Parsing, ASTs, and semantic analysis for the declaration of overloaded by Douglas Gregor · 16 years ago
  90. d93f0dd Sema-check virtual declarations. Complete dynamic_cast checking. by Sebastian Redl · 16 years ago
  91. 03a6cf9 Improve assert messages. by Sebastian Redl · 16 years ago
  92. 26d85b1 Move named cast sema functions to their own file. by Sebastian Redl · 16 years ago
  93. 42a552f Parsing, representation, and preliminary semantic analysis of destructors. by Douglas Gregor · 16 years ago
  94. 4e84935 A small error message improvement and some comment cleanup for static_cast. by Sebastian Redl · 16 years ago
  95. 64bffa9 Keep track of whether a C++ class is an aggregate. Don't allow initialization of non-aggregates with initializer lists. by Douglas Gregor · 16 years ago
  96. f03d7c7 Implement C++ copy-initialization for declarations. There is now some by Douglas Gregor · 16 years ago
  97. 7ad8390 Initial implementation of parsing, semantic analysis, and AST-building by Douglas Gregor · 16 years ago
  98. 1528145 Make it an error if an Objective-C declaration is not in the global scope. by Anders Carlsson · 16 years ago
  99. f7be944 Some cleanup of the cast checkers. Don't canonicalize types when not needed. Use distinct diagnostics for distinct errors. by Sebastian Redl · 16 years ago
  100. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 16 years ago