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