aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaInit.cpp
AgeCommit message (Expand)Author
2010-12-31MSVC doesn't require an accessible copy-constructor when binding a temporary ...Francois Pichet
2010-12-22Redesign the way anonymous fields are handled in designated-initializers.Francois Pichet
2010-12-07Bump up property conversion earlier in the initialization process. FixesJohn McCall
2010-12-07PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad
2010-12-04Don't crash when initializing a subaggregate in C from a property r-value.John McCall
2010-12-04Although we currently have explicit lvalue-to-rvalue conversions, they'reJohn McCall
2010-12-02When we're performing an explicit cast of some sort, don't complainDouglas Gregor
2010-11-24Switch a lot of call-sites over to using the new value-kind calculations.John McCall
2010-11-21Major anonymous union/struct redesign.Francois Pichet
2010-11-20A bundle of whitespace changes, separated out from the functional changes.Nick Lewycky
2010-11-15Assorted work leading towards the elimination of CK_Unknown.John McCall
2010-11-12When performing initialization of a copy of a temporary object, useDouglas Gregor
2010-11-11Extend the bitfield-truncation warning to initializations.John McCall
2010-11-11Unnest; no functionality change.John McCall
2010-11-10Add a variant of GCC-style vector types for ARM NEON.Bob Wilson
2010-11-08Improve our handling of C++ [class.copy]p3, which specifies that aDouglas Gregor
2010-11-08When attempting reference binding to an overloaded function, alsoDouglas Gregor
2010-11-08Properly diagnose invalid casts to function references. Patch byDouglas Gregor
2010-10-30Don't remove the init expression from the initializer list if it had a semant...Argyrios Kyrtzidis
2010-10-30When list-initializing a vector, try to copy-initialize from vectors insteadJohn McCall
2010-10-26No really, we don't have a retain/release system for statements/expressionsJohn McCall
2010-10-25Improve the tracking of source locations for parentheses in constructor calls.Chandler Carruth
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