| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Rename the last '[hH]asStandardLayout' entites to '[iI]sStandardLayout' | Chandler Carruth | 2011-04-30 | 1 | -1/+1 |
* | Completely re-implement the core logic behind the __is_standard_layout | Chandler Carruth | 2011-04-30 | 1 | -0/+4 |
* | Serialize/deserialize the HasStandardLayout bit when writing/reading PCHs. | Anders Carlsson | 2011-04-29 | 1 | -0/+1 |
* | Add a decl update when a static data member of a class template is instantiat... | Sebastian Redl | 2011-04-29 | 1 | -3/+10 |
* | Set the correct anonymous namespace (must be last reopening), and behave corr... | Sebastian Redl | 2011-04-24 | 1 | -4/+9 |
* | Fix adding an anonymous namespace in a chained PCH to a namespace from a prev... | Sebastian Redl | 2011-04-24 | 1 | -0/+10 |
* | On reading DeclContexts from PCH, check for visible updates even if the conte... | Sebastian Redl | 2011-04-24 | 1 | -14/+18 |
* | Implement most of the remaining logic in __is_literal type trait. This | Chandler Carruth | 2011-04-24 | 1 | -0/+2 |
* | Begin tracking trivialness of move constructors and move assignment | Chandler Carruth | 2011-04-23 | 1 | -0/+2 |
* | We regard a function as 'unused' from the codegen perspective, so our warning... | Argyrios Kyrtzidis | 2011-04-19 | 1 | -0/+1 |
* | Support for C++11 (non-template) alias declarations. | Richard Smith | 2011-04-15 | 1 | -3/+13 |
* | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith | 2011-04-14 | 1 | -0/+1 |
* | Add a bit to ParmVarDecl indicating whether the parameter undergoes | John McCall | 2011-03-09 | 1 | -0/+1 |
* | Teach libclang's token-annotation logic about context-sensitive | Douglas Gregor | 2011-03-08 | 1 | -1/+2 |
* | Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source ran... | Abramo Bagnara | 2011-03-08 | 1 | -2/+5 |
* | Fixed NamespaceDecl source range. | Abramo Bagnara | 2011-03-08 | 1 | -3/+4 |
* | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara | 2011-03-08 | 1 | -19/+21 |
* | Completed source ranges fixes for all classes inheriting from TypeDecl. | Abramo Bagnara | 2011-03-06 | 1 | -2/+0 |
* | Fixed TypedefDecl and TemplateTypeParameter source range. | Abramo Bagnara | 2011-03-06 | 1 | -1/+3 |
* | Fixed LabelDecl source range and cleaned creation code. | Abramo Bagnara | 2011-03-05 | 1 | -2/+1 |
* | When we're deserializing a template parameter declaration, temporarily | Douglas Gregor | 2011-03-05 | 1 | -2/+24 |
* | Make sure to put template parameters into their owning template's | Douglas Gregor | 2011-03-04 | 1 | -5/+3 |
* | Fixed source range for LabelDecl. | Abramo Bagnara | 2011-03-03 | 1 | -0/+2 |
* | Removed left brace location from LinkageSpecDecl. | Abramo Bagnara | 2011-03-03 | 1 | -2/+1 |
* | Fixed end source location for LinkageSpecDecl. | Abramo Bagnara | 2011-03-03 | 1 | -2/+3 |
* | Fixed source range for FileScopeAsmDecl. Others source range fixes will follow. | Abramo Bagnara | 2011-03-03 | 1 | -1/+3 |
* | Push nested-name-specifier source location information into namespace | Douglas Gregor | 2011-02-25 | 1 | -3/+3 |
* | Push nested-name-specifier source location information into using directives. | Douglas Gregor | 2011-02-25 | 1 | -3/+2 |
* | Update UsingDecl, UnresolvedUsingTypenameDecl, and | Douglas Gregor | 2011-02-25 | 1 | -11/+10 |
* | Step #2/N of __label__ support: keep pushing LabelDecl forward, | Chris Lattner | 2011-02-17 | 1 | -1/+0 |
* | Step #1/N of implementing support for __label__: split labels into | Chris Lattner | 2011-02-17 | 1 | -0/+10 |
* | When reading the AST, delay loading of the redeclaration chain to avoid deepl... | Argyrios Kyrtzidis | 2011-02-12 | 1 | -9/+49 |
* | NonTypeTemplateParmDecl is just a DeclaratorDecl, not a VarDecl. | John McCall | 2011-02-09 | 1 | -1/+1 |
* | A few more tweaks to the blocks AST representation: | John McCall | 2011-02-07 | 1 | -7/+14 |
* | An insomniac stab at making block declarations list the variables they close | John McCall | 2011-02-02 | 1 | -0/+9 |
* | Use attributes for all the override control specifiers. | Anders Carlsson | 2011-01-24 | 1 | -5/+0 |
* | Serialize and deserialize IsMarkedFinal/IsMarkedExplicit. | Anders Carlsson | 2011-01-22 | 1 | -0/+3 |
* | Generalise support for non-inheritable attributes | Peter Collingbourne | 2011-01-21 | 1 | -2/+0 |
* | Add IsMarkedOverride and IsMarkedFinal flags to FunctionDecl (to be used by C... | Anders Carlsson | 2011-01-20 | 1 | -0/+3 |
* | Implement support for non-type template parameter packs whose type is | Douglas Gregor | 2011-01-19 | 1 | -7/+20 |
* | Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, | Alexis Hunt | 2011-01-08 | 1 | -3/+3 |
* | Implement support for template template parameter packs, e.g., | Douglas Gregor | 2011-01-05 | 1 | -1/+3 |
* | In the latest episode of "Deserializing bugs caused by accessors" the series ... | Argyrios Kyrtzidis | 2011-01-03 | 1 | -9/+9 |
* | Add an AST representation for non-type template parameter | Douglas Gregor | 2010-12-23 | 1 | -1/+2 |
* | Eliminate the branching in QualType::getTypePtr() by providing a | Douglas Gregor | 2010-12-10 | 1 | -2/+2 |
* | When an "inline" declaration was followed by a definition not marked | Douglas Gregor | 2010-12-09 | 1 | -1/+2 |
* | Re-implement caching for the linkage calculation of declarations. | Douglas Gregor | 2010-12-06 | 1 | -2/+2 |
* | Revert r120808, my previous implementation of caching for the linkage | Douglas Gregor | 2010-12-06 | 1 | -2/+2 |
* | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara | 2010-12-03 | 1 | -0/+1 |
* | Implement caching for the linkage and visibility calculations of | Douglas Gregor | 2010-12-03 | 1 | -2/+2 |