Age | Commit message (Expand) | Author |
2013-04-20 | C++1y: Allow aggregates to have default initializers. | Richard Smith |
2013-04-19 | Implement CodeGen for C++11 thread_local, following the Itanium ABI specifica... | Richard Smith |
2013-04-16 | Basic support for Microsoft property declarations and | John McCall |
2013-04-10 | Don't crash when mangling types defined in ObjC class extensions. | John McCall |
2013-02-23 | Remove the hack that avoided mangling static functions in extern C contexts. | Rafael Espindola |
2013-02-14 | Mangle extern "C" functions whose names are not simple identifiers. | Rafael Espindola |
2013-02-14 | Partially revert r175117 so that we don't break assumptions about how | Rafael Espindola |
2013-02-14 | merge hasCLanguageLinkage and isExternC. Keep the shorter name. | Rafael Espindola |
2013-02-14 | Add a getLanguageLinkage method to VarDecls and FunctionDecls. Use it to fix | Rafael Espindola |
2013-02-08 | Use the target address space value when mangling names. | Tanya Lattner |
2013-02-07 | Add OpenCL samplers as Clang builtin types and check sampler related restrict... | Guy Benyei |
2013-01-20 | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei |
2013-01-12 | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko |
2012-12-18 | Re-commit r170428 changes with Linux style file endings. | Guy Benyei |
2012-12-18 | Revert changes from r170428, as I accidentally changed the line endings of th... | Guy Benyei |
2012-12-18 | Add OpenCL images as clang builtin types. | Guy Benyei |
2012-12-01 | Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ... | Benjamin Kramer |
2012-11-14 | Remove debugging assert. | David Blaikie |
2012-11-14 | Provide the correct mangling and linkage for certain unnamed nested classes. | David Blaikie |
2012-10-04 | Add missing comment for mangling. | Nick Lewycky |
2012-09-26 | Fix the AST representation for non-type template arguments to encode | Eli Friedman |
2012-09-25 | Implement Mike Herrick's proposed noexcept mangling. | John McCall |
2012-09-19 | Add the TypeSourceInfo for the lambda call operator to the lambda's | Eli Friedman |
2012-09-12 | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith |
2012-08-18 | When mangling a negative number, remember that negating it does not | John McCall |
2012-06-07 | Plug a long standing memory leak in TemplateArgument. | Benjamin Kramer |
2012-06-06 | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie |
2012-06-02 | Fix typos found by http://github.com/lyda/misspell-check | Benjamin Kramer |
2012-05-15 | Change the mangling of a ref-qualifier on a function type so that | John McCall |
2012-04-30 | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie |
2012-04-19 | Implements boxed expressions for Objective-C. <rdar://problem/10194391> | Patrick Beard |
2012-04-16 | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor |
2012-04-06 | Implement support for null non-type template arguments for non-type | Douglas Gregor |
2012-04-04 | Move the computation of the lambda mangling information (mangling | Douglas Gregor |
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-07 | AST representation for user-defined literals, plus just enough of semantic | Richard Smith |
2012-03-06 | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek |
2012-03-05 | Fix a bug in the mangler where in 'namespace std { extern "C" {X;} }', X woul... | James Molloy |
2012-02-25 | Richard Smith pointed out that there already is a proposal for init list mang... | Sebastian Redl |
2012-02-25 | Better mangling for new-expressions. Also, although we can't mangle arbitrary... | Sebastian Redl |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
2012-02-21 | Implement non-internal linkage for lambda closure types that need a | Douglas Gregor |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-20 | Basic support for name mangling of C++11 lambda expressions. Because | Douglas Gregor |
2012-02-16 | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl |
2012-02-16 | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl |
2012-02-16 | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl |
2012-02-08 | Revise the SplitQualType interface to make it its own thing instead of | John McCall |