aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema
AgeCommit message (Expand)Author
2013-02-14When marking derived classes' virtual methods ODR-used in order to triggerNick Lewycky
2013-02-12The meat of this patch is in BuildCXXMemberCalLExpr where we make it useNick Lewycky
2013-02-12Perform placeholder conversions on the controller of a _GenericJohn McCall
2013-02-12Diagnose loads of 'half' l-values in OpenCL.John McCall
2013-02-11[Modules] Cope better with top-level declarations loaded after being declared...Douglas Gregor
2013-02-10objective-C: Fixes a bogus warning due to not settingFariborz Jahanian
2013-02-09Remove some stray uses of <ctype.h> functions.Jordan Rose
2013-02-09QoI: -Wreadonly-iboutlet-property should have the warning's location on the p...Ted Kremenek
2013-02-08objective-C: don't issue bogus warning aboutFariborz Jahanian
2013-02-08Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h.Jordan Rose
2013-02-07Retain all hidden methods in the global method pool, because they may become ...Douglas Gregor
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-02-07Simplify FindExternalVisibleDeclsByName by making it return a bool indicatingRichard Smith
2013-02-07-Wimplicit-fallthrough: fixed two cases where "fallthrough annotation in unre...Alexander Kornienko
2013-02-06Don't check whether a friend declaration is correctly formed when instantiating,Nick Lewycky
2013-02-06Use a dyn_cast to avoid a crash when the TypeLoc is not a ConstantArrayTypeLoc.Chad Rosier
2013-02-05Test for virtual instead of pure here. It has the exact same effect, and JohnNick Lewycky
2013-02-05PR15095: Use more correct source locations for the InitListExpr we fake up forRichard Smith
2013-02-05Add some missing diagnostics for C++11 narrowing conversions.Richard Smith
2013-02-02PR15132: Replace "address expression must be an lvalue or a functionRichard Smith
2013-02-02Don't forget to run destructors when we create an array temporary of class type.Richard Smith
2013-02-02This patch makes "&Cls::purevfn" not an odr use. This isn't what the standardNick Lewycky
2013-02-01objc: Provide correct fixit instruction when two mismatchedFariborz Jahanian
2013-02-01For ModuleLoader::makeModuleVisible() also pass the source location where theArgyrios Kyrtzidis
2013-02-01Fixed segmentation fault when a CFGBlock has NULL successor.Alexander Kornienko
2013-02-01Fix PR14881 by implementing conversion rules between int and complex int.Bill Schmidt
2013-02-01Fix diagnostic for bad alignas use: it can't be applied to functions.Richard Smith
2013-02-01Add a new -Wundefined-inline warning for inline functions which are used but notNick Lewycky
2013-02-01Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign.Richard Smith
2013-02-01Don't do delayed exception-specification checking on an invalidDouglas Gregor
2013-02-01[Sema][Attr]Fix alignment attribute printing.Michael Han
2013-01-31Added outer template parameter lists to friend type AST nodes.Enea Zaffanella
2013-01-31Improve 'failed template argument deduction' diagnostic for the case where weRichard Smith
2013-01-31When code completing in a statement, parenthesized expression, orDouglas Gregor
2013-01-31Allow the computation of the base priority for a declaration code completion ...Douglas Gregor
2013-01-31Replace "failed template argument deduction" diagnostic with something usefulRichard Smith
2013-01-31Remove elements from Sema.UndefinedInternals as functions are defined. AlsoNick Lewycky
2013-01-31Fix grammar in comment.Nick Lewycky
2013-01-31Clarify the diagnostic for -Wnested-anon-types.Richard Smith
2013-01-31Fix ODR-use of a MemberExpr to check before marking a pure function used. RemoveNick Lewycky
2013-01-31Fix unused variable warnings in -asserts buildMatt Beaumont-Gay
2013-01-30Add OpenCL error that a kernel function must have void return type. Includes ...Tanya Lattner
2013-01-30Hoist retrieval of Expr* into caller. No functionality change.Ted Kremenek
2013-01-30Move UTF conversion routines from clang/lib/Basic to llvm/lib/SupportDmitri Gribenko
2013-01-30Also promote fp16 types to double when they're anonymous variadic arguments.Tim Northover
2013-01-30Add "instancetype" as a code completion result for the return type ofDouglas Gregor
2013-01-30The instance methods of the root class of an Objective-C hieararchyDouglas Gregor
2013-01-30Semantic analysis and CodeGen support for C11's _Noreturn. This is modeled asRichard Smith