1. d2827af Warn when an expression result in a LabelStmt is unused. by Argyrios Kyrtzidis · 14 years ago
  2. 19e60ad Right, there are *two* cases of pr-value class-type expressions that don't by John McCall · 14 years ago
  3. 58277b5 Tweak comment as suggested by Sebastian. by John McCall · 14 years ago
  4. 558d2ab one piece of code is responsible for the lifetime of every aggregate by John McCall · 14 years ago
  5. 0b34cf7 Test destructors in delete expressions and of temporaries for throwing. by Sebastian Redl · 14 years ago
  6. 5221d8f Address Doug's comments. by Sebastian Redl · 14 years ago
  7. 295995c First version of a testcase, plus fixes. by Sebastian Redl · 14 years ago
  8. 369e51f Implement Expr::CanThrow, a function that applies the noexcept operator rules to expressions. by Sebastian Redl · 14 years ago
  9. 2001215 Make CallExpr::getCalleeDecl look through pointer derefs. by Sebastian Redl · 14 years ago
  10. 9996a7f Fix the memory leak of FloatingLiteral/IntegerLiteral. by Argyrios Kyrtzidis · 14 years ago
  11. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  12. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
  13. 096832c Regularize the API for accessing explicit template arguments. by John McCall · 14 years ago
  14. de7e662 Zap unused UnaryOperator::OffsetOf. by Eli Friedman · 14 years ago
  15. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 14 years ago
  16. 569c316 Allow reference binding of a reference of Objective-C object type to by Douglas Gregor · 14 years ago
  17. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  18. 4204f07 Further adjustments to -Wglobal-constructors; works for references and direct by John McCall · 14 years ago
  19. b4b9b15 Kill off RequiresGlobalConstructor in favor of isConstantInitializer. by John McCall · 14 years ago
  20. ff331c1 Remove the vast majority of the Destroy methods from the AST library, by Douglas Gregor · 14 years ago
  21. 906082e Update ImplicitCastExpr to be able to represent an XValue. by Sebastian Redl · 14 years ago
  22. e39a389 Introduce a new cast kind for an "lvalue bitcast", which handles by Douglas Gregor · 14 years ago
  23. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  24. 663e380 Read/write the C++ parts of DeclRefExpr and MemberExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  25. 2597345 Fix rdar://8139785 "implement warning on dead expression in comma operator" by Argyrios Kyrtzidis · 14 years ago
  26. 2111c85 Introduce Expr::Classify and Expr::ClassifyModifiable, which determine the classification of an expression under the C++0x taxology (value category). Reimplement isLvalue and isModifiableLvalue using these functions. No regressions in the test suite from this, and my rough performance check doesn't show any regressions either. by Sebastian Redl · 14 years ago
  27. 8dfbd8b Support a couple more C++ Exprs for PCH. by Argyrios Kyrtzidis · 14 years ago
  28. 949bd4b Do not treat @selector as lvalue (unlike g++). Patch by Nico Weber (pr7390). by Fariborz Jahanian · 14 years ago
  29. 03b2960 Objective-c++ IRGen. Support for @selector expression as by Fariborz Jahanian · 14 years ago
  30. 9d3347a Give Type::isIntegralType() an ASTContext parameter, so that it by Douglas Gregor · 14 years ago
  31. 2ade35e Introduce Type::isIntegralOrEnumerationType(), to cover those places by Douglas Gregor · 14 years ago
  32. 6907fbe When deciding whether an expression has the boolean nature, don't look through by John McCall · 14 years ago
  33. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  34. bef0efd add a couple of key functions for classes without them. by Chris Lattner · 14 years ago
  35. 85bcd99 Static data members intialized in-class that have constant values are by Douglas Gregor · 14 years ago
  36. 7ed5bd3 Fix indentation by Douglas Gregor · 14 years ago
  37. bb6e73f A DeclRefExpr that refers to a member function or a static data member by Douglas Gregor · 14 years ago
  38. c6dfe19 Don't complain about an __builtin_va_arg expression's result being by Douglas Gregor · 14 years ago
  39. d905f5a Move CheckICE and isIntegerConstantExpr to ExprConstant.cpp because it seemed by John McCall · 14 years ago
  40. 2fc46bf Add IgnoreParenImpCasts() to Expr, which is basically like IgnoreParenCasts by John McCall · 14 years ago
  41. 4bfe196 Reapplying patch to change StmtNodes.def to StmtNodes.td, this time by Sean Hunt · 14 years ago
  42. c302113 Revert r103072; I accidentally ended up deleting a bunch of trailing by Sean Hunt · 14 years ago
  43. 9d90d62 Change StmtNodes.def to StmtNodes.td in anticipation of a rewrite of attributes by Sean Hunt · 14 years ago
  44. 72be24f Fix a thinko that caused us not to compute __builtin_offset as a by Douglas Gregor · 14 years ago
  45. ad4e02f When determining a standard conversion sequence involves resolving the by Douglas Gregor · 14 years ago
  46. 8ecdb65 Completely reimplement __builtin_offsetof, based on a patch by Roberto Amadini. by Douglas Gregor · 14 years ago
  47. 049c51e Wrap a couple of long lines. (Test commit.) by Enea Zaffanella · 14 years ago
  48. f1b48b7 CastExpr should not hold a pointer to the base path. More cleanup. by Anders Carlsson · 14 years ago
  49. 7ab9d57 Rename InheritancePath to BasePath, rename CastExpr::CXXBaseVector to CXXBaseSpecifierArray. More to come. by Anders Carlsson · 14 years ago
  50. a3bdded Destroy the inheritance path. by Anders Carlsson · 14 years ago
  51. 92e986e Implement template instantiation for Objective-C++ message sends. We by Douglas Gregor · 14 years ago
  52. d8383d4 CXXNamedCastExpr is actually an abstract expression. by Zhongxing Xu · 14 years ago
  53. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 14 years ago
  54. 900fc63 Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 14 years ago
  55. 2b334bb make our existing "switch on bool" warning work for C. Since by Chris Lattner · 14 years ago
  56. 709210f Use ASTVector instead of std::vector for the Exprs in InitListExpr. Performance by Ted Kremenek · 14 years ago
  57. c46a246 Don't emit an 'unused expression' warning for '||' and '&&' expressions that contain assignments by Ted Kremenek · 14 years ago
  58. 161755a Implement the protected access restriction ([class.protected]), which requires by John McCall · 14 years ago
  59. 2f59979 Rework our handling of copy construction of temporaries, which was a by Douglas Gregor · 14 years ago
  60. db2eb5a Remove the AST statistics tracking I added yesterday; it didn't pan out. by Douglas Gregor · 14 years ago
  61. 23cba80 Introduce a new kind of derived-to-base cast which bypasses the need for by John McCall · 14 years ago
  62. 6bb8017 Propagate the "found declaration" (i.e. the using declaration instead of by John McCall · 14 years ago
  63. f540305 Introduce new AST statistics that keep track of the number of isa (or by Douglas Gregor · 14 years ago
  64. f031774 Add Support for 'warn_unused_result" attribute on by Fariborz Jahanian · 14 years ago
  65. b03d33e Make PredefinedExpr::ComputeName() more robust to incorrect by Ted Kremenek · 15 years ago
  66. 90c7126 Some cleanup, change diagnostic when assigning to by Fariborz Jahanian · 15 years ago
  67. 0faede6 Improve the unused-value check to look into comma expressions and filter out by John McCall · 15 years ago
  68. 7c2342d When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 15 years ago
  69. c2350e5 Extend ObjCMessageExpr for class method sends with the source location by Douglas Gregor · 15 years ago
  70. f604a56 References to const int parameters with ICE default arguments are not ICEs. by John McCall · 15 years ago
  71. ba7bc55 Revert: "Change InitListExpr to allocate the array for holding references" by Ted Kremenek · 15 years ago
  72. 9f9269e Change InitListExpr to allocate the array for holding references by Ted Kremenek · 15 years ago
  73. e873fb7 Introduce a new kind of failed result for isLvalue/isModifiableLvalue by Douglas Gregor · 15 years ago
  74. bf0ee35 White-list comma expressions with the literal 0 as their RHS against by John McCall · 15 years ago
  75. 2d901df Don't error when setting a sub-structure variable via objc properties by Fariborz Jahanian · 15 years ago
  76. eb3b324 Allocate the SubExprs array in ObjCMessageExpr using the allocator associated with ASTContext. This fixes yet another leak (<rdar://problem/7639260>). by Ted Kremenek · 15 years ago
  77. 848fa64 More vtable layout dumper improvements. Handle destructors, dump the complete function type of the member functions (using PredefinedExpr::ComputeName. by Anders Carlsson · 15 years ago
  78. e9ff443 Diagnose when user provided getter is being used as lvalue by Fariborz Jahanian · 15 years ago
  79. 1f1b3b3 Per discussion, remove the explicit restriction on static const data members with by John McCall · 15 years ago
  80. 6d5a1c2 Revert "Numerous changes to selector handling:", this breaks a whole bunch of by Daniel Dunbar · 15 years ago
  81. a8fa96e Numerous changes to selector handling: by David Chisnall · 15 years ago
  82. 09cc141 Remove abstract expression kinds from the StmtClass enum. Update a few users by John McCall · 15 years ago
  83. 31310a2 In C++, an initializer on a variable doesn't necessarily mean it's the definition. With that in mind, rename getDefinition to getAnyInitializer (to distinguish it from getInit) and reimplement it in terms of isThisDeclarationADefinition. Update all code to use this new function. by Sebastian Redl · 15 years ago
  84. 0938026 Diagnose binding a non-const reference to a vector element. by Anders Carlsson · 15 years ago
  85. de4b1d8 Fix reference binding of const lvalue references to bit-fields, which by Douglas Gregor · 15 years ago
  86. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 15 years ago
  87. 501edb6 When determining whether a DeclRefExpr is value-dependent when it by Douglas Gregor · 15 years ago
  88. 319d57f Move the allocation of designators in DesignatedInitExpr to the by Douglas Gregor · 15 years ago
  89. 2333f77 Make sure to explicitly pass type/value dependence to Expr constructor. This by Eli Friedman · 15 years ago
  90. 4eadcc5 Fix for PR5872. Add static specifier and const/volatile qualifiers to member functions in __PRETTY_FUNCTION__ predefined expressions. by Sam Weinig · 15 years ago
  91. cb1c77f support the warn_unused_result in C++ class methods by Nuno Lopes · 15 years ago
  92. caabf9b indentation fix by Chris Lattner · 15 years ago
  93. d20254f fix PR4010: add support for the warn_unused_result for function pointers by Nuno Lopes · 15 years ago
  94. 2d48e78 A CXXExprWithTemporaries expression is an lvalue if its subexpression by Douglas Gregor · 15 years ago
  95. 2514a30 Diagnose attempting to assign to a sub-structure of an ivar by Fariborz Jahanian · 15 years ago
  96. 6eef519 Improve template instantiation for object constructions in several ways: by Douglas Gregor · 15 years ago
  97. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  98. 3b27f1a Patch to allow C-style cast from 'void *' to block pointer type. by Fariborz Jahanian · 15 years ago
  99. 820bca4 Code gen for ObjCIsaExpr AST used as lvalue. (fixes radar 7457534). by Fariborz Jahanian · 15 years ago
  100. 4cbf9d4 Added a missing case to a switch statement. by Fariborz Jahanian · 15 years ago