aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaOverload.cpp
AgeCommit message (Expand)Author
2013-04-20Implement core issue 1608: class members can be found via operator lookup in ...Richard Smith
2013-04-17Fix PR15291: noreturn adjustment in overload resolution for function template...Douglas Gregor
2013-04-15Remove hasExternalLinkageUncached.Rafael Espindola
2013-04-08<rdar://problem/13584715> Converted constant expressions are expected to have...Douglas Gregor
2013-04-08Fix PR15634, better error message for template deduction failure.Richard Trieu
2013-04-03Complain about attempts to befriend declarations via a usingJohn McCall
2013-03-26<rdar://problem/13267210> Ensure that Sema::CompareReferenceRelationship retu...Douglas Gregor
2013-03-14Avoid computing the linkage too early. Don't invalidate it.Rafael Espindola
2013-02-26Fix initializer for variables with attribute address_space set.Matt Arsenault
2013-02-23Remove the hack that avoided mangling static functions in extern C contexts.Rafael Espindola
2013-02-14Partially revert r175117 so that we don't break assumptions about howRafael Espindola
2013-02-14merge hasCLanguageLinkage and isExternC. Keep the shorter name.Rafael Espindola
2013-02-12The meat of this patch is in BuildCXXMemberCalLExpr where we make it useNick Lewycky
2013-02-07Enable overloading of OpenCL events - this is needed for the overloaded OpenC...Guy Benyei
2013-02-07Add OpenCL samplers as Clang builtin types and check sampler related restrict...Guy Benyei
2013-02-07Apply the pure-virtual odr rule to other constructs which can call overloadedNick Lewycky
2013-01-31Improve 'failed template argument deduction' diagnostic for the case where weRichard Smith
2013-01-31Replace "failed template argument deduction" diagnostic with something usefulRichard Smith
2013-01-26Fix mismatch between pointer and pointee type when diagnosing an incorrectRichard Smith
2013-01-24Start checking nonnull (as well as format and argument_with_type_tag) onNick Lewycky
2013-01-24Fix some wonky formatting, remove spurious emacs major mode marker. NoNick Lewycky
2013-01-23Add a new LangOpt NativeHalfType. This option allows for native half/fp16Joey Gouly
2013-01-14Fix regression in r172376. Don't try to detect missing 'constexpr' specifiersRichard Smith
2013-01-14PR12008: defer adding the implicit 'const' to a constexpr member function untilRichard Smith
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-12Fix a regression from 171193: main cannot be overloaded.Rafael Espindola
2013-01-02s/CPlusPlus0x/CPlusPlus11/gRichard Smith
2012-12-28Reject overloading of two static extern C functions.Rafael Espindola
2012-12-28Improve diagnostic wording for when an implicitly-deleted special memberRichard Smith
2012-12-22PR14695: Fix assert from bad cast<>. Not every namespace is a NamespaceDecl; ...Richard Smith
2012-12-19Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe...David Blaikie
2012-12-09Fix overload resolution for the initialization of a multi-dimensionalRichard Smith
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-11-28Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface,Argyrios Kyrtzidis
2012-11-23Sema: Provide a valid source location when instantiating templates based on a...Benjamin Kramer
2012-11-14When we have a MemberExpr referring to an overloaded static member function,Richard Smith
2012-11-13When filtering the list of associated namespaces so that we don't suggest peopleNick Lewycky
2012-11-09Use isInvalidDecl() instead of isStatic() as suggested by dblaikie.Nico Weber
2012-11-09Don't crash on calling static member overloaded operator, PR14120Nico Weber
2012-11-08Fix a bug I found while preparing my devmtg talk: When passing NULL to aMatt Beaumont-Gay
2012-11-07PR11851 (and duplicates): Whenever a constexpr function is referenced,Richard Smith
2012-10-23Use a .def file for most of the diagnostic options.Douglas Gregor
2012-10-18DR1442: In a range-based for statement, namespace 'std' is not an associatedRichard Smith
2012-10-09Clearing a SmallPtrSet is still expensive, split it out from OverloadCandidat...Benjamin Kramer
2012-10-08StringRef-ify Binary/UnaryOperator::getOpcodeStrDavid Blaikie
2012-10-02Add FP_CONTRACT support for clang.Lang Hames
2012-09-25Fix crash when a decltype expression in a trailing return type refers to theRichard Smith
2012-09-19Remove Context argument from TemplateDeductionInfo constructor. It was no lon...Craig Topper
2012-09-18Fix a small bug in the way we handle builtin candidates forEli Friedman
2012-09-13Revert r163829. The world (or libstdc++, at least) is not ready.Richard Smith