aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaTemplateVariadic.cpp
AgeCommit message (Expand)Author
2013-02-21Use None rather than Optional<T>() where possible.David Blaikie
2013-02-20Include llvm::Optional in clang/Basic/LLVM.hDavid Blaikie
2013-02-18Replace TypeLoc llvm::cast support to be well-defined.David Blaikie
2013-02-07Add OpenCL samplers as Clang builtin types and check sampler related restrict...Guy Benyei
2013-02-02This patch makes "&Cls::purevfn" not an odr use. This isn't what the standardNick Lewycky
2013-01-20Implement OpenCL event_t as Clang builtin type, including event_t related Ope...Guy Benyei
2012-12-18Re-commit r170428 changes with Linux style file endings.Guy Benyei
2012-12-18Revert changes from r170428, as I accidentally changed the line endings of th...Guy Benyei
2012-12-18Add OpenCL images as clang builtin types.Guy Benyei
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-08-31Improved MSVC __interface support by adding first class support for it, inste...Joao Matos
2012-07-25PR12057: Allow variadic template pack expansions to cross lambda boundaries.Richard Smith
2012-07-18PR13386: When matching up parameters between a function template declarationRichard Smith
2012-04-04For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this isRichard Smith
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-10Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall
2012-03-06Add clang support for new Objective-C literal syntax for NSDictionary, NSArray,Ted Kremenek
2012-03-01Fix the isReferenced bit on parameters in a couple of edge cases. PR12153.Eli Friedman
2012-02-22ArrayRef-icize the function arguments.Bill Wendling
2012-01-31Make the callback object to Sema::CorrectTypo mandatory.Kaelyn Uhrain
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-13Convert SemaTemplate*.cpp to pass a callback object to CorrectTypo.Kaelyn Uhrain
2011-10-25Check for unexpanded parameter packs in the name that guards aDouglas Gregor
2011-10-14Provide half floating point support as a storage only type.Anton Korobeynikov
2011-10-06Support for C1x _Atomic specifier (see testcase). This is primarily being co...Eli Friedman
2011-09-22ArrayRef-ifying the UnexpandedParameterPacks passed to Sema::CheckParameterPa...David Blaikie
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-06-28Add support for C++ namespace-aware typo correction, e.g., correctingDouglas Gregor
2011-05-24Implement a new type node, UnaryTransformType, designed to represent aSean Hunt
2011-05-19Implement __underlying_type for libc++.Sean Hunt
2011-05-01Switch the interface name for both TemplateTypeParmType andChandler Carruth
2011-04-09Fix a bunch of major problems with __unknown_anytype and properly testJohn McCall
2011-02-17remove some defensive code: LocalInstantiationScope::getInstantiationOfChris Lattner
2011-01-23Null initialize a few variables flagged byTed Kremenek
2011-01-20Fix a use of uninitialized variables, found by Ted!Douglas Gregor
2011-01-19Implement basic support for the use of variadic templates and blocksDouglas Gregor
2011-01-14Teach PackExpansionExpr to keep track of the number of pack expansionsDouglas Gregor
2011-01-14Keep track of the number of expansions to be produced from a type packDouglas Gregor
2011-01-14Start implementing support for substitution into pack expansions thatDouglas Gregor
2011-01-12Teach TreeTransform how to transform a pack expansion type intoDouglas Gregor
2011-01-11When mapping from a function parameter pack to the set of functionDouglas Gregor
2011-01-10Work-in-progress implementation of C++0x [temp.arg.explicit]p9, whichDouglas Gregor
2011-01-07Implement substitution of a function parameter pack for its set ofDouglas Gregor
2011-01-05Add Decl::isParameterPack(), which covers both function and templateDouglas Gregor
2011-01-05Add semantic analysis for the creation of and an AST representationDouglas Gregor
2011-01-05Implement support for template template parameter packs, e.g.,Douglas Gregor
2011-01-04Implement the sizeof...(pack) expression to compute the length of aDouglas Gregor
2011-01-03Implement pack expansions whose pattern is a base-specifier.Douglas Gregor
2011-01-03Properly rebuild pack expansions whose pattern is a non-type templateDouglas Gregor
2011-01-03Diagnose the presence of unexpanded parameter packs within classDouglas Gregor