1. e099c00 Remove redeclaration of Invalid. The code that set this to true was updating an by Nick Lewycky · 14 years ago
  2. b79bf1d Remove unused variable, but keep function call with side-effect. by Nick Lewycky · 14 years ago
  3. 7079886 Revise the representation of parameter scope data so that the by John McCall · 14 years ago
  4. 3aa8140 Add an optional field attached to a DeclRefExpr which points back to the by Chandler Carruth · 14 years ago
  5. fb44de9 Store a parameter index and function prototype depth in every by John McCall · 14 years ago
  6. d6efe9b Remove a stale comment, it no longer applied after my cleanups. by Chandler Carruth · 14 years ago
  7. aaf147b Move several more type traits' implementations into the AST. A few were by Chandler Carruth · 14 years ago
  8. cec0ced Switch __is_scalar to use the isScalarType predicate rather than by Chandler Carruth · 14 years ago
  9. af5a3c6 Have the array type traits build an expression with type 'size_t' by Chandler Carruth · 14 years ago
  10. f7ef000 Remove an inapplicable and completely out of place comment. The type is in fact 'bool'. by Chandler Carruth · 14 years ago
  11. d064c70 Remove more dead code for emitting diagnostics. The callers of these by Chandler Carruth · 14 years ago
  12. 06207f6 Simplify the flow of some of the array type trait code. by Chandler Carruth · 14 years ago
  13. 4aa0af3 Convert the expression trait evaluation to a static function and by Chandler Carruth · 14 years ago
  14. 83f563c Remove the default case from the unary type trait evaluation function, by Chandler Carruth · 14 years ago
  15. 73e0a91 Mark that this function ends in a covering switch statement with every by Chandler Carruth · 14 years ago
  16. 98fa94d Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr. by Chandler Carruth · 14 years ago
  17. 059ce0d Fully implement delegating constructors! by Sean Hunt · 14 years ago
  18. ccb4ecf More cleanup of the type traits implementation. by Chandler Carruth · 14 years ago
  19. c41d6b5 Order the type traits according to the standard's listing of unary type by Chandler Carruth · 14 years ago
  20. 28eeb38 Begin cleaning up type trait expression implementations and settling on by Chandler Carruth · 14 years ago
  21. 09e2c52 Improve the documentation for the two ObjCDeclQualifiers so that I by John McCall · 14 years ago
  22. b7efff4 Switch the interface name for both TemplateTypeParmType and by Chandler Carruth · 14 years ago
  23. 4fb86f8 Re-applies the patch first applied way back in r106099, with by Chandler Carruth · 14 years ago
  24. 769d0cc When comparing parameters of reference-to-qualified type during by Douglas Gregor · 14 years ago
  25. eb65a10 Extract a function to impose the completeness requirement on unary type by Chandler Carruth · 14 years ago
  26. 636a617 Hoist all of the type-specific trait logic for __is_standard_layout into by Chandler Carruth · 14 years ago
  27. a822544 Completely re-implement the core logic behind the __is_standard_layout by Chandler Carruth · 14 years ago
  28. 43fa33b Relax the non-POD memset warning to use the less restrictive C++11 by Chandler Carruth · 14 years ago
  29. a343a41 r130381 follow up: accept __uuidof expression for template argument reference. by Francois Pichet · 14 years ago
  30. f79a719 Add a decl update when a static data member of a class template is instantiated in a different PCH than its containing class. Otherwise we get double definition errors. Fixes a Boost.MPL problem that affects Boost.Accumulators and probably a lot more of Boost. by Sebastian Redl · 14 years ago
  31. f8b1771 Don't waste memory if the initializer expression is empty. by Argyrios Kyrtzidis · 14 years ago
  32. a6ce3e6 When determining whether two types are reference-compatible, check by Douglas Gregor · 14 years ago
  33. 11f98d0 Update r130381 to check for UO_AddrOf. by Francois Pichet · 14 years ago
  34. a97d24f Support &__uuidof(type) as a non type template argument. by Francois Pichet · 14 years ago
  35. 642a75f When block-capturing a variable with a non-trivial destructor, by John McCall · 14 years ago
  36. cf56641 A few corrections to type traits that missed the last checkin by John Wiegley · 14 years ago
  37. 1d59f7f Convert assertion in memset checking to a runtime check (because real code may provide a deviant definition of memset). by Ted Kremenek · 14 years ago
  38. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 14 years ago
  39. 61d0b6b More cleanup of template argument deduction and its handling of by Douglas Gregor · 14 years ago
  40. 21ff2e5 Implementation of Embarcadero array type traits by John Wiegley · 14 years ago
  41. a459cc2 Clean up the handling of non-CVR qualifiers in template argument by Douglas Gregor · 14 years ago
  42. 20c0da7 t/clang/type-traits by John Wiegley · 14 years ago
  43. 134cb44 Heh, funny thing, 'void' isn't a POD type. Nice of us to suggest it to by Chandler Carruth · 14 years ago
  44. 7ccc95b Add a warning (-Wnon-pod-memset) for calls to memset() with by Chandler Carruth · 14 years ago
  45. d46a112 Diagnose attempts to implicitly instantiate a template before it is by John McCall · 14 years ago
  46. b7d98d3 If a null statement was preceded by an empty macro keep its instantiation source location by Argyrios Kyrtzidis · 14 years ago
  47. 3b88735 Extend Sema::ClassifyName() to support C++, ironing out a few issues by Douglas Gregor · 14 years ago
  48. 27766d2 Improve diagnostics for typo correction via Sema::ClassifyName(), by by Douglas Gregor · 14 years ago
  49. f530751 FixOverloadedFunctionReference needs to rebuild member accesses of by John McCall · 14 years ago
  50. 0f7b3dc When comparing Objective-C pointers during overload resolution to by Douglas Gregor · 14 years ago
  51. 028ea4b When computing Objective-C pointer conversions in C++, retain by Douglas Gregor · 14 years ago
  52. 864c041 Make yet another placeholder type, this one marking that an expression is a bound by John McCall · 14 years ago
  53. c1a0a73 Add ms_struct attribute on record typee (and ignore it for now) - wip. by Fariborz Jahanian · 14 years ago
  54. 8a285ae Emit a -Wnull-dereference warning for "*null" not just "*null = something". Addresses rdar://9269271. by Argyrios Kyrtzidis · 14 years ago
  55. abdd3b3 For the warnings related to -Wparentheses, display first the note about how to silence the warning and by Argyrios Kyrtzidis · 14 years ago
  56. 865dd8c 'extern' variables in functions don't shadow externs in global scope. Fixes rdar://8883302, this time for C++ as well. by Argyrios Kyrtzidis · 14 years ago
  57. 223de24 fix PR9474, a crash with -fshort-enum and C++ templates: when instantiating by Chris Lattner · 14 years ago
  58. 62c9258 Recognize gcc's ms_struct pragma (and ignore for now). This is wip. by Fariborz Jahanian · 14 years ago
  59. 621c92a Minor tweak to avoid having to dig through canonical types multiple times when checking a qualification conversion by Douglas Gregor · 14 years ago
  60. ec385cf When Sema::ClassifyName() finds an invalid ivar reference, return an by Douglas Gregor · 14 years ago
  61. 5526220 t/clang/expr-traits by John Wiegley · 14 years ago
  62. a47317b PR4304: Add warning for designators in strict c89 mode. by Eli Friedman · 14 years ago
  63. 58a2cd8 Synthesizing the definition of an implicit member is an AST modification, so notify any mutation listeners of it. This fixes a crasher in chained PCH, where an implicit destructor in a PCH gets a definition in a chained PCH, which is then lost. However, any further use of the destructor would cause its definition to be regenerated in the final file, hiding the bug. by Sebastian Redl · 14 years ago
  64. 312eadb Implement a new identifier-classification scheme where Sema by Douglas Gregor · 14 years ago
  65. 89ebaed "note" location of forward class used as receiver of by Fariborz Jahanian · 14 years ago
  66. 4a47e8d Remove unnecessary const away cast in LateTemplateParserCallback. by Francois Pichet · 14 years ago
  67. b7e9589 Implement basic __is_trivial type-trait support, enough to close PR9472. by Chandler Carruth · 14 years ago
  68. f1cc1d0 Like the coding standards say, do not use "using namespace std". by Jay Foad · 14 years ago
  69. 81ef3e6 Diagnose C++ abstract parameters for Objective-C methods. by John McCall · 14 years ago
  70. e5e3d31 Exhaust the cases. by Argyrios Kyrtzidis · 14 years ago
  71. bb29d1b Don't allow reinterpret_cast to reference of vector element and property expression. Thanks goes to Eli Friedman! by Argyrios Kyrtzidis · 14 years ago
  72. d4a0caf Correctly emit a diagnostic for multiple templated function definitions in -flate-template-parsing mode. by Francois Pichet · 14 years ago
  73. b464a5b reinterpret_cast to reference of a bit-field is not allowed. by Argyrios Kyrtzidis · 14 years ago
  74. 7884403 At the end of the translation unit, defining a vtable can introduce by Douglas Gregor · 14 years ago
  75. 8387e2a Add -fdelayed-template-parsing option. Using this option all templated function definitions are parsed at the end of the translation unit only if it is required by an actual instantiation. As such all the symbols of the TU are available during name lookup. by Francois Pichet · 14 years ago
  76. 64089ce Fixes an instance method meta-data generation bug in by Fariborz Jahanian · 14 years ago
  77. 4bada2e Do not return true from MergeFunctionDecl for a warn_static_non_static warning in Microsoft mode. by Francois Pichet · 14 years ago
  78. a61aedc For -Wlogical-op-parentheses, point at '&&', not '||'. Fixes rdar://9125333. by Argyrios Kyrtzidis · 14 years ago
  79. cfe38c4 I concur with DPG here. This does indeed apply in 0x mode. Added test by Chandler Carruth · 14 years ago
  80. b65abda Don't enter a qualified scope for an invalid decl. by Argyrios Kyrtzidis · 14 years ago
  81. e36bca6 In IsUserDefinedConversion try to recover from RequireCompleteType returning true. by Argyrios Kyrtzidis · 14 years ago
  82. cf320c6 For consistency, change suffix from war_ to warn_ for some Microsoft warnings I introduced lately. by Francois Pichet · 14 years ago
  83. 2e510a0 Downgrade error "static declaration of 'foo' follows non-static declaration" to a warning in Microsoft mode. by Francois Pichet · 14 years ago
  84. 34f52d1 Fix crashing rdar://9122854 & http://llvm.org/PR9461. by Argyrios Kyrtzidis · 14 years ago
  85. bb9b80c Add a fixit suggest for missing case keywords inside a switch scope. For instance, in the following code, 'case ' will be suggested before the '1:' by Richard Trieu · 14 years ago
  86. 3e8dc2a Use the ArrayFiller to fill out "holes" in the array initializer due to designated initializers, by Argyrios Kyrtzidis · 14 years ago
  87. 4423ac0 For by Argyrios Kyrtzidis · 14 years ago
  88. 109ec1b Fix a crash-on-invalid involving non-identifier names in a member by Douglas Gregor · 14 years ago
  89. db57a4c ADT/Triple: Switch to using .isOSDarwin() predicate. by Daniel Dunbar · 14 years ago
  90. 6b6b42a We regard a function as 'unused' from the codegen perspective, so our warnings diverge from by Argyrios Kyrtzidis · 14 years ago
  91. b403d6d Fix PR9741. The implicit declarations created for range-based for loops weren't being added to the DeclContext (nor were they being marked as implicit). Also, the declarations were being emitted in the wrong order when building the CFG. by Richard Smith · 14 years ago
  92. e842605 When providing code completions of ivar names for a property by Douglas Gregor · 14 years ago
  93. aa490cb When producing code completion results for the Objective-C property by Douglas Gregor · 14 years ago
  94. 32ac00d Testing my commit access. A few whitespace changes to Sema/SemaCXXCast.cpp. by Richard Trieu · 14 years ago
  95. 5272adf Enforce nonnull __attribute__ on Objective-C method calls. // rdar://9287695 by Fariborz Jahanian · 14 years ago
  96. f9af524 For the purposes of overload resolution, consider a conversion from an by Douglas Gregor · 14 years ago
  97. 5666d36 Forbid the use of C++ new/delete to allocate/free objects within an by Douglas Gregor · 14 years ago
  98. d4c5f84 Implement appropriate semantics for C++ casting and conversion when by Douglas Gregor · 14 years ago
  99. eefa76e Allow shadowin of 'self' in objc methods in by Fariborz Jahanian · 14 years ago
  100. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 14 years ago