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