1. 9c3c902 Remove BlockStmtExpr. by Steve Naroff · 17 years ago
  2. 17dab4f Remove support for BlockExprExpr. For example... by Steve Naroff · 17 years ago
  3. 24b41fa CXXConditionDeclExpr expression node is an lvalue. by Argyrios Kyrtzidis · 17 years ago
  4. dd972f2 More type checking for blocks. Still incomplete (will hopefully finish up this weekend). by Steve Naroff · 17 years ago
  5. bfdcae6 Fix a handful of typos (closure->block) to avoid confusion. by Steve Naroff · 17 years ago
  6. 4eb206b Add semantic analysis for "blocks". by Steve Naroff · 17 years ago
  7. aa1f9f1 Fix isIntegerConstantExpr eval of __builtin_offsetof to return result by Daniel Dunbar · 17 years ago
  8. 9048891 Fix double-free error with sizeof applied to VLA types. - PR2727. by Daniel Dunbar · 17 years ago
  9. 2ea2b5e Handle emitting __builtin_huge_valf as a constant expr. by Anders Carlsson · 17 years ago
  10. b88d45e treat bool literals as constatnt expressions. by Anders Carlsson · 17 years ago
  11. 7267f78 Add CodeGen support for CXXZeroInitValueExpr. by Argyrios Kyrtzidis · 17 years ago
  12. 15425f9 Handle AddrLabelExprs in Expr::isConstantExpr by Anders Carlsson · 17 years ago
  13. 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 17 years ago
  14. 0835a3c Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastExpr and ExplicitCastExpr derive from a common base class (CastExpr): by Argyrios Kyrtzidis · 17 years ago
  15. 32442bb Update some isIntegerConstantExpr uses to use by Daniel Dunbar · 17 years ago
  16. acc5f3e More #include cleaning by Daniel Dunbar · 17 years ago
  17. c4a1dea More #include cleaning by Daniel Dunbar · 17 years ago
  18. e91593e More #include cleaning by Daniel Dunbar · 17 years ago
  19. 76de9d7 Cleanup ObjCSuperRefExpr (remove last usage and AST node:-). by Steve Naroff · 17 years ago
  20. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 17 years ago
  21. 355aba8 Remove the ICE pointer cast hack; the issue this was working around is by Eli Friedman · 17 years ago
  22. c63a1f2 by Chris Lattner · 17 years ago
  23. 28be73f convert more code to use ASTContext to get canonical types instead by Chris Lattner · 17 years ago
  24. 611b2ec fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 17 years ago
  25. 7c4a191 fix 80 col violation. by Chris Lattner · 17 years ago
  26. baf0d66 Add support for __extension__ as an lvalue. rdar://6097308 by Chris Lattner · 17 years ago
  27. 5a56ac3 Added UnaryOperator::isPrefix(). by Ted Kremenek · 17 years ago
  28. 5f6b632 revert my bogus attempt to fix the comment. sorry for the noise. by Nuno Lopes · 17 years ago
  29. 9a979c3 fix CheckForConstantInitializer() for Compound Literals by Nuno Lopes · 17 years ago
  30. c44eec6 Shuffle things around in preparation for integrating Eli's constant evaluator. by Anders Carlsson · 17 years ago
  31. 0795232 Add Sema support for C++ classes. by Argyrios Kyrtzidis · 17 years ago
  32. 4df728e ObjCMessageExpr objects that represent messages to class methods now can contain the ObjCInterfaceDecl* of the target class if it was available when the ObjCMessageExpr object was constructed. The original interfaces of the class has been preserved (requiring no functionality changes from clients), but now a "getClasSInfo" method returns both the ObjCInterfaceDecl* and IdentifierInfo* of the target class. by Ted Kremenek · 17 years ago
  33. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 17 years ago
  34. 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 17 years ago
  35. da8249e Fix ast dumping to work with long double literals, e.g. we dump: by Chris Lattner · 17 years ago
  36. c793808 Put back my temporary hack until Eli addresses this in a more complete fashion. by Steve Naroff · 17 years ago
  37. 1b76ada Re-fix r51907 in a way which doesn't affect valid code. This essentially by Eli Friedman · 17 years ago
  38. a2ac06e Change Expr::isIntegerConstantExpr() to allow for pointer types (for GCC compatibility). Note FIXME. by Steve Naroff · 17 years ago
  39. e3e9add Fix <rdar://problem/5979875> clang on xcode: error: use of undeclared identifier 'super' by Steve Naroff · 17 years ago
  40. 799a6a6 Teach Expr::isLvalue() about ObjC properties. For now, all properties are writable. Added a FIXME for another day. by Steve Naroff · 17 years ago
  41. ae78407 Add basic support for properties references (a missing feature). by Steve Naroff · 17 years ago
  42. f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 17 years ago
  43. 211f6ad Assume statement expressions have side effects; this gets rid of a lot by Eli Friedman · 17 years ago
  44. 4f8d123 Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 17 years ago
  45. e1b6d50 Remove the unneeded #include of VMCore header "llvm/DerivedTypes.h". by Dan Gohman · 17 years ago
  46. 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 17 years ago
  47. 861dc46 Minor cleanup to isBuiltinConstantExpr. by Eli Friedman · 17 years ago
  48. 774e4af Removed bogus "return true" in Expr::isConstantExpr that returned true for all by Ted Kremenek · 17 years ago
  49. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 17 years ago
  50. 3b8d116 Remove AST dependency on VMCore by switching ExtVectorElementExpr off Constant. by Nate Begeman · 17 years ago
  51. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 17 years ago
  52. 1a42a25 Fixup InitListExpr::child_begin/end. Thanks to Ted for catching the regression. by Steve Naroff · 17 years ago
  53. 81e72e4 Fix off-by-one error. by Steve Naroff · 17 years ago
  54. 9226197 Fixed bug in ObjCIVarExpr: the child iterator now iterates over the Base expression. by Ted Kremenek · 17 years ago
  55. ea958e57 Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 17 years ago
  56. c5ae899 Extend InitListExpr API/IMPL to support arbitrary add/remove (in support of the initializer rewrite I am doing). by Steve Naroff · 17 years ago
  57. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  58. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
  59. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  60. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
  61. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from AST/Expr.cpp]
  62. 98be494 remove the source location arguments to various target query methods. by Chris Lattner · 17 years ago
  63. 2e5f54a Removed VarDecl::hasStaticStorage() (redundant with hasGlobalStorage()) by Ted Kremenek · 17 years ago
  64. a269ebf implement codegen support for sizeof(void), fixing PR2080. by Chris Lattner · 17 years ago
  65. f46699c Alternate address spaces work: by Chris Lattner · 17 years ago
  66. a0992b6 by Steve Naroff · 17 years ago
  67. 64a31ef Fix bug where we would report the wrong value for __alignof__ with an expr that is not a type. by Anders Carlsson · 17 years ago
  68. 6a24acb Make sizeof and __alignof work correctly with packed structs. by Anders Carlsson · 17 years ago
  69. 3c2b317 Remove useless parameter from isConstantSizeType. by Eli Friedman · 17 years ago
  70. 4b3f9b3 Fix a minor bug in isNullPointerConstant triggered by the linux tgmath.h. by Eli Friedman · 18 years ago
  71. 56f3494 Move IgnoreParenCasts to be a method on Expr. by Chris Lattner · 18 years ago
  72. acb818a by Steve Naroff · 18 years ago
  73. 75ceedf by Steve Naroff · 18 years ago
  74. bcba201 Make CallExpr::isBuiltinConstantExpr slightly more efficient. by Anders Carlsson · 18 years ago
  75. c4f8e8b by Steve Naroff · 18 years ago
  76. 67295d0 Implement first round of feedback on __builtin_overload by Nate Begeman · 18 years ago
  77. 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 18 years ago
  78. bf75538 fix isIntegerConstantExpr evaluation of unary !. by Chris Lattner · 18 years ago
  79. d47d4f5 Support checking and codegen of constant vector globals by Nate Begeman · 18 years ago
  80. e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 18 years ago
  81. 4e99a5f Added method Expr::IgnoreParens(), which returns the first non-ParenExpr Expr*. by Ted Kremenek · 18 years ago
  82. e9b1219 by Steve Naroff · 18 years ago
  83. aa58f00 by Steve Naroff · 18 years ago
  84. aaffbf7 by Steve Naroff · 18 years ago
  85. fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 18 years ago
  86. d0091aa by Steve Naroff · 18 years ago
  87. c0a356b Fix isIntegerConstantExpr to compare against zero for casts to bool instead of by Chris Lattner · 18 years ago
  88. b8f13a8 by Steve Naroff · 18 years ago
  89. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 18 years ago
  90. efdd157 Fix PR1895: a crash on an ugly gcc extension. by Chris Lattner · 18 years ago
  91. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
  92. d18b329 Add accessors + iterator interface. by Chris Lattner · 18 years ago
  93. 6538347 Fix the location we emit the "not a constant" error for this: by Chris Lattner · 18 years ago
  94. 060e470 Fixed another case where sizeof() returns the size in bytes, not bits. by Ted Kremenek · 18 years ago
  95. f816f77 Removed "isSizeOfExpr" mode from StmtIterator. It turned out not to be by Ted Kremenek · 18 years ago
  96. b51d2b2 Added "mode" to StmtIterator to record if the expression being iterated by Ted Kremenek · 18 years ago
  97. 699e9fb Added support to StmtIterator to traverse the size expression of a VLA type by Ted Kremenek · 18 years ago
  98. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 18 years ago
  99. 239c15e Fix a case where we'd return "is not a constant expr" without return a location. by Chris Lattner · 18 years ago
  100. e638639 by Steve Naroff · 18 years ago