Age | Commit message (Expand) | Author |
2011-01-07 | Fix crash in CFGBuilder on invalid code. We still need | Ted Kremenek |
2011-01-07 | When instantiating the arguments to an initializer, use the | Douglas Gregor |
2011-01-07 | Fix a valgrind error when transforming function prototypes with | Douglas Gregor |
2011-01-07 | Update AST reader/writer to handle new AppleKext. | Fariborz Jahanian |
2011-01-07 | Implement substitution of a function parameter pack for its set of | Douglas Gregor |
2011-01-07 | Prefix all attribute enumerators with attr_ for consistency. | Francois Pichet |
2011-01-07 | Do not use cdecl, fastcall, stdcall etc.. as identifier name. They are reserv... | Francois Pichet |
2011-01-07 | Rework a few things about how we emit ObjC's for enumeration statement. | John McCall |
2011-01-07 | Add all options needed to support -fapple-kext. wip. | Fariborz Jahanian |
2011-01-07 | Factor out the template transformation of a sequence of function | Douglas Gregor |
2011-01-06 | Implement template argument deduction from a call to a function | Douglas Gregor |
2011-01-06 | Add cortex-m3 CPU to getCPUDefineSuffix mapping. | Bob Wilson |
2011-01-06 | PowerPC fixes. | Roman Divacky |
2011-01-06 | fix rdar://8823139, a crash on a comment in a preprocessed .s file | Chris Lattner |
2011-01-06 | Introduce an AttributedType, but don't actually use it anywhere yet. | John McCall |
2011-01-06 | Clang should not warn on code in clang that is only there to remove warnings. | Jakob Stoklund Olesen |
2011-01-06 | When default-initializing a TemplateArgumentLocInfo, make sure that we | Douglas Gregor |
2011-01-05 | Fast-path an arity check when performing template argument deduction that com... | Douglas Gregor |
2011-01-05 | Eliminate an unnecessary dance where we tried to cope with the lack of | Douglas Gregor |
2011-01-05 | Initial implementation of function parameter packs. This implementation allows: | Douglas Gregor |
2011-01-05 | Fix an embarrassing think in the disambiguation logic for the ellipsis in a p... | Douglas Gregor |
2011-01-05 | Don't warn on missing 'copy' attribute on a 'block' | Fariborz Jahanian |
2011-01-05 | hasInit() -> hasDefaultArg() | Douglas Gregor |
2011-01-05 | Add Decl::isParameterPack(), which covers both function and template | Douglas Gregor |
2011-01-05 | Propagate the "deduced from array bound" bit when comparing deduced | Douglas Gregor |
2011-01-05 | When we're converting deduced template arguments to the type of the | Douglas Gregor |
2011-01-05 | Use the proper enum as parameter, instead of unsigned. No functionality change. | Argyrios Kyrtzidis |
2011-01-05 | Eliminate two "unsupported" errors relating to variadic templates: one | Douglas Gregor |
2011-01-05 | Replace the representation of template template argument pack | Douglas Gregor |
2011-01-05 | fix a -Wself-assign warning | Chris Lattner |
2011-01-05 | Add semantic analysis for the creation of and an AST representation | Douglas Gregor |
2011-01-05 | Parse template template argument pack expansions. They're still not | Douglas Gregor |
2011-01-05 | Update C++ [temp.param]p11 citation to reflect the changes in C++0x. No funct... | Douglas Gregor |
2011-01-05 | Implement C++0x [temp.param]p11 for non-type and template template | Douglas Gregor |
2011-01-05 | Implement proper parameter pack matching for non-type template | Douglas Gregor |
2011-01-05 | Implement support for template template parameter packs, e.g., | Douglas Gregor |
2011-01-05 | Fix the -Asserts build. | John McCall |
2011-01-05 | Refactor the application of type attributes so that attributes from | John McCall |
2011-01-05 | Use Parser::ExpectAndConsume() uniformly to eat semicolons after | Douglas Gregor |
2011-01-05 | Many of the built-in operator candidates introduced into overload | Douglas Gregor |
2011-01-04 | Eliminate some completely useless code that attempted to perform some | Douglas Gregor |
2011-01-04 | Improve our handling of non-type template parameters in partial | Douglas Gregor |
2011-01-04 | Remove an unnecessary FIXME for variadic templates | Douglas Gregor |
2011-01-04 | Minor cleanups for template argument deduction in the presence of | Douglas Gregor |
2011-01-04 | Improve the checking of deduced template arguments stored within template arg... | Douglas Gregor |
2011-01-04 | Fold -fobjc-nonfragile-abi2 into -fobjc-nonfragile-abi. | Fariborz Jahanian |
2011-01-04 | Implement name mangling for sizeof...(pack), to silence the last of | Douglas Gregor |
2011-01-04 | There is nothing interesting to analyze with a sizeof...(pack) expression | Douglas Gregor |
2011-01-04 | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor |
2011-01-04 | Prefer getAs<ComplexType> rather than cast<ComplexType> on canonical type. Su... | Abramo Bagnara |