aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaInit.cpp
AgeCommit message (Expand)Author
2010-10-12Introduce support for emitting diagnostics (warnings + their notes)Douglas Gregor
2010-10-10Allow a string literal to initialize a tail array (PR8217), patch Chris Lattner
2010-10-08This patch fixes multiple issues in clang's designated init builder andDouglas Gregor
2010-10-05In Sema's TryRefInitWithConversionFunction, suppress user conversions for the...Argyrios Kyrtzidis
2010-09-15one piece of code is responsible for the lifetime of every aggregateJohn McCall
2010-09-12When performing overload resolution, only compare the final conversionDouglas Gregor
2010-09-08Use the new-initialization code for initializing scalars with aDouglas Gregor
2010-09-08Provide proper type-source location information forDouglas Gregor
2010-08-31Rename DeclContext::getLookupContext to getRedeclContext and change its seman...Sebastian Redl
2010-08-26One who seeks knowledge learns something new every day.John McCall
2010-08-26Work around a gcc warning.John McCall
2010-08-25Split out a header to hold APIs meant for the Sema implementation from Sema.h.John McCall
2010-08-25GCC didn't care for my attempt at API compatibility, so brute-force everythingJohn McCall
2010-08-25More incremental progress towards not including Expr.h in Sema.h.John McCall
2010-08-24Move some of SemaOverload's API to various places in Overload.h, and killJohn McCall
2010-08-24Remove a header dependency from Sema.h at the cost of some type safety.John McCall
2010-08-24Struggle mightily against header inclusion in Sema.h.John McCall
2010-08-24OwningExprResult -> ExprResult. This patch brought to you byJohn McCall
2010-08-23Relax the construction of a definition for implicit, trivial defaultChandler Carruth
2010-08-23Sundry incremental steps towards killing off Action.John McCall
2010-08-20Another step in the process of making the parser depend on Sema:John McCall
2010-08-17Don't try to initialize a reference with a constructed temporary if eitherJohn McCall
2010-08-14PR3344: Downgrade "too many braces around scalar initializer" to a warning.Eli Friedman
2010-08-12Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor
2010-08-07Allow reference binding of a reference of Objective-C object type toDouglas Gregor
2010-08-07Store inheritance paths after CastExprs instead of inside them.John McCall
2010-07-26Make sure that implicit qualification and derived-to-base conversions of xval...Sebastian Redl
2010-07-21Added extra check when looking for location of '=' inFariborz Jahanian
2010-07-21Fix source location of the initializer in Fariborz Jahanian
2010-07-20Update ImplicitCastExpr to be able to represent an XValue.Sebastian Redl
2010-07-13Whenever we're creating an expression that is typically an rvalueDouglas Gregor
2010-07-13When forming a function call or message send expression, be sure toDouglas Gregor
2010-07-08Reinstate the fix for PR7556. A silly use of isTrivial() wasDouglas Gregor
2010-07-07Revert r107828 and r107827, the fix for PR7556, which seems to beDouglas Gregor
2010-07-07Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect itsDouglas Gregor
2010-07-07Do not use CXXZeroValueInitExpr for class types. Instead, useDouglas Gregor
2010-07-07Fix an issue with opencl init list checking.Nate Begeman
2010-07-02Introduce a new routine, LookupConstructors(), and use it for allDouglas Gregor
2010-07-01Add a new routine Sema::LookupDestructor and make all destructor-lookup calls...Douglas Gregor
2010-07-01Remove unnecessary ASTContext parameter fromDouglas Gregor
2010-07-01When performing copy initialization via user-defined conversions,Douglas Gregor
2010-06-30Make both old and new versions of reference binding use the new classificatio...Sebastian Redl
2010-06-30Fix a comment typo.Sebastian Redl
2010-06-18Don't complain about missing field initializers when the initializerDouglas Gregor
2010-06-07Use MaybeCreateCXXExprWithTemporaries for potential destruction ofFariborz Jahanian
2010-06-07PR7245: Make binding a reference to a temporary without a usable copyJeffrey Yasskin
2010-06-04More refactoring.John McCall
2010-05-20Add a new failure kind, FK_Incomplete, to InitializationSequence, toDouglas Gregor
2010-05-15Substantially alter the design of the Objective C type AST by introducingJohn McCall
2010-05-15Recognize when the named return value optimization applies in aDouglas Gregor