1. 0dfd848 Eagerly evaluate type traits in Sema instead of lazily in AST. They actually need Sema access to be correct, fixes coming up. by Sebastian Redl · 14 years ago
  2. 4076dac When applying 'delete' on a pointer-to-array type match GCC and EDG behavior and treat it as 'delete[]'. by Argyrios Kyrtzidis · 14 years ago
  3. bd7c849 Eli helped me understand how evaluation contexts work. by Sebastian Redl · 14 years ago
  4. 2e15622 Define and implement CXXNoexceptExpr. Create it in Sema. by Sebastian Redl · 14 years ago
  5. 02bc21a Parse the noexcept operator and stub out sema. by Sebastian Redl · 14 years ago
  6. a1a0478 Eliminate the comma locations from all of the Sema routines that deal by Douglas Gregor · 14 years ago
  7. 3d37c0a Add proper type-source information to UnaryTypeTraitExpr, including by Douglas Gregor · 14 years ago
  8. 4eb4f0f Fix a few minor issues with parsing and semantic analysis of C++ by Douglas Gregor · 14 years ago
  9. 19311e7 Use the new-initialization code for initializing scalars with a by Douglas Gregor · 14 years ago
  10. 01b7c30 Microsoft's __uuidof operator implementation part 1. by Francois Pichet · 14 years ago
  11. 607a178 Allow (cv) void and incomplete arrays to be passed to the type traits. by Sebastian Redl · 14 years ago
  12. ab6677e Provide proper type-source location information for by Douglas Gregor · 14 years ago
  13. 1bb2a93 Improve source-location information for CXXNewExpr, by hanging on to by Douglas Gregor · 14 years ago
  14. 6cf7502 Revert my user-defined literal commits - r1124{58,60,67} pending by Sean Hunt · 14 years ago
  15. 0016d51 Implement C++0x user-defined string literals. by Sean Hunt · 14 years ago
  16. 9996a7f Fix the memory leak of FloatingLiteral/IntegerLiteral. by Argyrios Kyrtzidis · 14 years ago
  17. f312b1e One who seeks knowledge learns something new every day. by John McCall · 14 years ago
  18. d931b08 De-memberify the VarDecl and FunctionDecl StorageClass enums. by John McCall · 14 years ago
  19. d293298 Fix miscompilation. The custom new[]/delete[] methods were not getting called for arrays with more than 1 dimension. by Argyrios Kyrtzidis · 14 years ago
  20. 2d88708 Split out a header to hold APIs meant for the Sema implementation from Sema.h. by John McCall · 14 years ago
  21. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  22. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
  23. 2a7fb27 Move more stuff out of Sema.h. by John McCall · 14 years ago
  24. 120d63c Move some of SemaOverload's API to various places in Overload.h, and kill by John McCall · 14 years ago
  25. 5f1e094 More header elimination. The goal of all this is to allow Parser to by John McCall · 14 years ago
  26. 7a1fad3 Remove a header dependency from Sema.h at the cost of some type safety. by John McCall · 14 years ago
  27. 7cd088e Struggle mightily against header inclusion in Sema.h. by John McCall · 14 years ago
  28. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  29. b3d8748 Abstract out passing around types and kill off ActionBase. by John McCall · 14 years ago
  30. 9ae2f07 Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). by John McCall · 14 years ago
  31. 2b5289b Push DeclGroupRefs and TemplateNames in an opaque but type-safe way by John McCall · 14 years ago
  32. ca0408f Sundry incremental steps towards killing off Action. by John McCall · 14 years ago
  33. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  34. cf807c4 Generate Attr subclasses with TableGen. by Sean Hunt · 14 years ago
  35. 7b86862 Make sure to add MallocAttr to explicitly-declared operator new/new[] by Douglas Gregor · 14 years ago
  36. 2767ce2 Emit an error if an array is too large. We're slightly more strict by Douglas Gregor · 14 years ago
  37. e737f50 Move Sema's headers into include/clang/Sema, renaming a few along the way. by Douglas Gregor · 14 years ago
  38. 507384f Bail out of MaybeBindToTemporary if the record type is invalid. Test case by John McCall · 14 years ago
  39. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 14 years ago
  40. 09556fd Fix a crash on template delete operators. by Chandler Carruth · 14 years ago
  41. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  42. 1357869 Get rid of isObjectType; when C++ says "object type", it generally by Eli Friedman · 14 years ago
  43. 046a746 Look through using declarations when deciding whether to use an operator by John McCall · 14 years ago
  44. 76c38d3 Read/write in PCH Sema's StdNamespace and StdBadAlloc and use a LazyDeclPtr for them that will deserialize them when needed. by Argyrios Kyrtzidis · 14 years ago
  45. 26faaac Rename getStdNamespace -> getOrCreateStdNamespace, to better reflect its functionality. by Argyrios Kyrtzidis · 14 years ago
  46. 254a942 When deleting a value of class type, make sure that type is complete by Douglas Gregor · 14 years ago
  47. ff331c1 Remove the vast majority of the Destroy methods from the AST library, by Douglas Gregor · 14 years ago
  48. 906082e Update ImplicitCastExpr to be able to represent an XValue. by Sebastian Redl · 14 years ago
  49. 0ea4dfd When checking whether to bind an expression to a temporary, don't bind Obj-C message send expressions who call methods that return references. by Anders Carlsson · 14 years ago
  50. 6398235 Whenever we're creating an expression that is typically an rvalue by Douglas Gregor · 14 years ago
  51. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 14 years ago
  52. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  53. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  54. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  55. c0fee50 Rip out the C++0x-specific handling of destructor names. The specification is still in flux and unclear, and our interim workaround was broken. Fixes PR7467. by Sebastian Redl · 14 years ago
  56. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 14 years ago
  57. 63ef464 Do not use CXXZeroValueInitExpr for class types. Instead, use by Douglas Gregor · 14 years ago
  58. db89f28 Add a new routine Sema::LookupDestructor and make all destructor-lookup calls use that routine by Douglas Gregor · 14 years ago
  59. 1d110e0 Remove unnecessary ASTContext parameter from by Douglas Gregor · 14 years ago
  60. 6bc574d Implement C++ DR299, which allows an implicit conversion from a class by Douglas Gregor · 14 years ago
  61. c30614b Factor the conversion from a switch condition to an integral or by Douglas Gregor · 14 years ago
  62. 6699220 Allow a using directive to refer to the implicitly-defined namespace by Douglas Gregor · 14 years ago
  63. 2389324 Suppress diagnosing access violations while looking up deallocation functions by Chandler Carruth · 14 years ago
  64. f9d5bac Use TypeSourceInfo to help determine the SourceRange of a CXXNewExpr. This fixes several by Ted Kremenek · 14 years ago
  65. 1984eb9 String literals enclosed in parentheses are still string literals. Fixes PR7488. by Douglas Gregor · 14 years ago
  66. 0c293ea Type Type::isRealFloatingType() that vectors are not floating-point by Douglas Gregor · 14 years ago
  67. 170e508 fix some more gcc3.4 constness warnings by Gabor Greif · 14 years ago
  68. d426662 Make sure result type of objc++ message expression is by Fariborz Jahanian · 14 years ago
  69. 2ade35e Introduce Type::isIntegralOrEnumerationType(), to cover those places by Douglas Gregor · 14 years ago
  70. 81e317a Allow pseudo-destructors to be called on qualified pointers. Patch by by John McCall · 14 years ago
  71. bf1a028 Alter the interface of GetTypeForDeclarator to return a TypeSourceInfo*. by John McCall · 14 years ago
  72. 5ed9b93 Make sure to check the accessibility of and mark the destructor for the by Eli Friedman · 14 years ago
  73. d1c1d7b typeid() produces type information for the cv-unqualified version of by Douglas Gregor · 14 years ago
  74. 94a6157 Downgrade deletion of a void* from an error (which is should be) to an by Douglas Gregor · 14 years ago
  75. bd054db Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRange -> getSourceRange for TypeLoc. by Abramo Bagnara · 14 years ago
  76. ea1471e Support implicitly closing on 'this' in a block. Fixed PR7165. by John McCall · 14 years ago
  77. b65a458 When a conditional operator is an rvalue of class type, we need to by Douglas Gregor · 14 years ago
  78. e4da7a0 Added basic source locations to Elaborated and DependentName types. by Abramo Bagnara · 14 years ago
  79. fb4a543 Implement C++ support for vector and extended vector types. This by Douglas Gregor · 14 years ago
  80. 55cbd6e Correctly diagnose array 'new' with initialization arguments when the new type is a typedef to an array type. by Anders Carlsson · 14 years ago
  81. 3caf04e When the type-id or new-type-id of a C++ "new" expression is a typedef by Douglas Gregor · 14 years ago
  82. 3c9034c Recognize when the named return value optimization applies in a by Douglas Gregor · 14 years ago
  83. 6fb745b Rework when and how vtables are emitted, by tracking where vtables are by Douglas Gregor · 14 years ago
  84. 465d41b Merged Elaborated and QualifiedName types. by Abramo Bagnara · 14 years ago
  85. 380c213 Speculatively revert r103497, "Do not mark the virtual members of an by Daniel Dunbar · 14 years ago
  86. bbbe074 Do not mark the virtual members of an implicitly-instantiated class as by Douglas Gregor · 14 years ago
  87. eecf38f Fixed DISABLE_SMART_POINTERS breakage by Douglas Gregor · 14 years ago
  88. 586596f Rework our handling of temporary objects within the conditions of by Douglas Gregor · 14 years ago
  89. 323ed74 Rearchitect -Wconversion and -Wsign-compare. Instead of computing them by John McCall · 14 years ago
  90. 48c9501 The array form of 'new' can never have initializers. by Anders Carlsson · 15 years ago
  91. 28e9483 Simplify. by Anders Carlsson · 15 years ago
  92. ad4e02f When determining a standard conversion sequence involves resolving the by Douglas Gregor · 15 years ago
  93. 57fdc8a Improve source-location information in a C++ typeid (type) expression by Douglas Gregor · 15 years ago
  94. b0fd483 Improve the diagnostic when we find something we did not expect in a by Douglas Gregor · 15 years ago
  95. f9d68e1 Add base paths for CK_BaseToDerived and CK_BaseToDerivedMemberPointer. by Anders Carlsson · 15 years ago
  96. 5cf86ba Actually produce base paths for CastExprs of kind CK_DerivedToBase. by Anders Carlsson · 15 years ago
  97. 41b2dcd Add BasePath arguments to all cast expr constructors. by Anders Carlsson · 15 years ago
  98. e25a96c Pass the base specifiers through to CheckDerivedToBaseConversion. No functionality change yet. by Anders Carlsson · 15 years ago
  99. f1b48b7 CastExpr should not hold a pointer to the base path. More cleanup. by Anders Carlsson · 15 years ago
  100. 107de90 Keep track of when DependentNameTypes have no associated keyword by Douglas Gregor · 15 years ago