Age | Commit message (Expand) | Author |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-10 | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall |
2012-03-09 | [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart(). | Daniel Dunbar |
2012-03-08 | Turn explicit construction of temporaries using initializer list syntax into ... | Sebastian Redl |
2012-03-07 | Be smarter in discovering list-initialization of temporaries. Fixes PR12182. | Sebastian Redl |
2012-03-05 | If the element type of an initializer list has a destructor, make sure we che... | Sebastian Redl |
2012-02-29 | Tentatively fix PR12117. The test case from the bug now passes, and all exist... | Sebastian Redl |
2012-02-25 | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles |
2012-02-24 | Implement C++11 [over.match.copy]p1b2, which allows the use of | Douglas Gregor |
2012-02-24 | Sink variable into assert | Matt Beaumont-Gay |
2012-02-24 | Kill a spurious use of hasTrivialDefaultConstructor() | Douglas Gregor |
2012-02-23 | Replace the std::map in the init list checker with a DenseMap to reduce mallo... | Benjamin Kramer |
2012-02-23 | Try to handle qualifiers more consistently for array InitListExprs. Fixes <r... | Eli Friedman |
2012-02-19 | Add a testcase for using objects with list-constructors, and fix a Sema crash... | Sebastian Redl |
2012-02-19 | Fix a crash for nested initializer list initialization. Still does the wrong ... | Sebastian Redl |
2012-02-17 | Basic code generation support for std::initializer_list. | Sebastian Redl |
2012-02-15 | Support GCC's bug^Wextension allowing class array members to be initalized by a | Richard Smith |
2012-02-15 | When overload resolution picks an implicitly-deleted special member | Douglas Gregor |
2012-02-15 | Introduce a new initialization entity for lambda captures, and | Douglas Gregor |
2012-02-14 | PR11650: Implement resolution of core issue 1301. Value initialization can't be | Richard Smith |
2012-02-12 | Change the way we store initialization kinds so that all direct inits can dis... | Sebastian Redl |
2012-02-12 | Employ DirectList initialized entities to properly sort through some initiali... | Sebastian Redl |
2012-02-11 | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl |
2012-02-11 | Implement core issue 5: a temporary created for copy-initialization has a | Richard Smith |
2012-02-09 | Switching to using dyn_cast_or_null, and fixing line endings in the test case. | Aaron Ballman |
2012-02-09 | Attempting to initialize a union member that does not exist no longer crashes. | Aaron Ballman |
2012-02-05 | Basic: import SmallString<> into clang namespace | Dylan Noblesmith |
2012-02-04 | A useful approximation of initializer list constructors. | Sebastian Redl |
2012-02-04 | Factor out the actual overload resolution from TryConstructorInitialization, ... | Sebastian Redl |
2012-02-04 | Don't unwrap initializer lists before calling TryConstructorInitialization, i... | Sebastian Redl |
2012-02-04 | Move a method from IdentifierTable.h out of line and remove the SmallString i... | Benjamin Kramer |
2012-02-04 | In C++11 mode, when an integral constant expression is desired and we have a | Richard Smith |
2012-02-02 | Split Sema::MarkDeclarationReferenced into multiple functions; the additional... | Eli Friedman |
2012-01-31 | Make the callback object to Sema::CorrectTypo mandatory. | Kaelyn Uhrain |
2012-01-23 | Downgrade C++11 narrowing conversion errors to warnings default-mapped | Douglas Gregor |
2012-01-18 | constexpr: converted constant expression handling for enumerator values, case | Richard Smith |
2012-01-18 | Move narrowing conversion detection code from SemaInit to SemaOverload, ready | Richard Smith |
2012-01-17 | Sema support for initialization of std::initializer_list from initializer lists. | Sebastian Redl |
2012-01-17 | Re-add an over-zealously removed break. | David Blaikie |
2012-01-17 | Remove unreachable code in Clang. (replace with llvm_unreachable where approp... | David Blaikie |
2012-01-17 | Remove unnecessary default cases in switches over enums. | David Blaikie |
2012-01-12 | Convert SemaInit.cpp to pass a callback object to CorrectTypo. | Kaelyn Uhrain |
2012-01-05 | The value of a const weak variable is not an integer constant. | John McCall |
2011-12-29 | Change the diagnostics which said 'accepted as an extension' to instead say | Richard Smith |
2011-12-22 | Fix build under -Wswitch by adding support for FK_ListConstructorOverloadFailed | Nick Lewycky |
2011-12-22 | Overloading for initializer list construction. | Sebastian Redl |
2011-12-22 | List-initialization via constructor part 1. Still needs: pretty-printing, ove... | Sebastian Redl |
2011-12-20 | Revert r146766, and add a testcase for which it introduced a wrong-code bug. | Richard Smith |
2011-12-16 | Fix an inconsistency in the syntactic form of InitListExpr in case of initial... | Nicola Gigante |
2011-12-16 | C++11 constexpr: Add note stacks containing backtraces if constant evaluation | Richard Smith |