| Commit message (Expand) | Author | Age | Files | Lines |
* | In the latest episode of "Deserializing bugs caused by accessors" the series ... | Argyrios Kyrtzidis | 2011-01-03 | 1 | -9/+9 |
* | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor | 2011-01-03 | 2 | -2/+20 |
* | The -fshort-wchar option causes wchar_t to become unsigned, in addition to being | Chris Lattner | 2010-12-25 | 1 | -1/+2 |
* | Add an AST representation for non-type template parameter | Douglas Gregor | 2010-12-23 | 2 | -1/+3 |
* | Add -fobjc-default-synthesized-properties flag | Ted Kremenek | 2010-12-23 | 2 | -0/+5 |
* | Replace all uses of PathV1::makeAbsolute with PathV2::fs::make_absolute. | Michael J. Spencer | 2010-12-21 | 1 | -4/+5 |
* | Introduce a new type, PackExpansionType, to capture types that are | Douglas Gregor | 2010-12-20 | 2 | -0/+23 |
* | Replace all uses of PathV1::isAbsolute with PathV2::is_{absolute,relative}. | Michael J. Spencer | 2010-12-17 | 1 | -1/+1 |
* | MemoryBuffer API update. | Michael J. Spencer | 2010-12-16 | 1 | -1/+1 |
* | Fix diagnostic pragmas. | Argyrios Kyrtzidis | 2010-12-15 | 2 | -2/+3 |
* | Restore r121752 without modification. | John McCall | 2010-12-14 | 1 | -14/+15 |
* | Pull out r121752 in case it's causing the selfhost breakage. | John McCall | 2010-12-14 | 1 | -15/+14 |
* | Factor out most of the extra state in a FunctionProtoType into a separate | John McCall | 2010-12-14 | 1 | -14/+15 |
* | Variadic templates: extend Type, NestedNameSpecifier, TemplateName, | Douglas Gregor | 2010-12-13 | 2 | -1/+3 |
* | Keep the source location of the selector in ObjCMessageExpr. | Argyrios Kyrtzidis | 2010-12-10 | 2 | -2/+4 |
* | Eliminate the branching in QualType::getTypePtr() by providing a | Douglas Gregor | 2010-12-10 | 2 | -3/+9 |
* | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 2 | -0/+22 |
* | It's kindof silly that ExtQuals has an ASTContext&, and we can use that | John McCall | 2010-12-10 | 1 | -1/+1 |
* | Use error_code instead of std::string* for MemoryBuffer. | Michael J. Spencer | 2010-12-09 | 1 | -3/+7 |
* | When an "inline" declaration was followed by a definition not marked | Douglas Gregor | 2010-12-09 | 2 | -1/+3 |
* | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 3 | -26/+2 |
* | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet | 2010-12-07 | 2 | -0/+27 |
* | 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 |
* | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall | 2010-12-06 | 2 | -7/+7 |
* | More anonymous struct/union redesign. This one deals with anonymous field use... | Francois Pichet | 2010-12-04 | 2 | -8/+20 |
* | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara | 2010-12-03 | 2 | -0/+2 |
* | Implement caching for the linkage and visibility calculations of | Douglas Gregor | 2010-12-03 | 1 | -2/+2 |
* | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall | 2010-12-02 | 2 | -49/+41 |
* | Serialization: support for CUDA language extensions | Peter Collingbourne | 2010-12-01 | 2 | -0/+3 |
* | When using a precompiled preamble with detailed preprocessing records, | Douglas Gregor | 2010-11-30 | 3 | -38/+81 |
* | When loading a precompiled preamble, use the file ID of the | Douglas Gregor | 2010-11-30 | 1 | -0/+12 |
* | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 2 | -2/+2 |
* | Hide a bunch of symbols. | Benjamin Kramer | 2010-11-25 | 1 | -6/+8 |
* | change the 'is directory' indicator to be a null-or-not | Chris Lattner | 2010-11-23 | 1 | -2/+3 |
* | simplify the cache miss handling code, eliminating CacheMissing. | Chris Lattner | 2010-11-23 | 1 | -1/+1 |
* | PCH files only cache successful stats. Remove the code that reads/writes | Chris Lattner | 2010-11-23 | 2 | -31/+12 |
* | rework the stat cache, pulling it out of FileManager.h into | Chris Lattner | 2010-11-23 | 3 | -13/+16 |
* | tidy up. Split FileManager::getBufferForFile into | Chris Lattner | 2010-11-23 | 1 | -3/+2 |
* | now the FileManager has a FileSystemOpts ivar, stop threading | Chris Lattner | 2010-11-23 | 1 | -9/+4 |
* | remove old compatibility APIs, use StringRef versions instead. | Chris Lattner | 2010-11-21 | 1 | -2/+2 |
* | Major anonymous union/struct redesign. | Francois Pichet | 2010-11-21 | 2 | -0/+28 |
* | Revert r119838 "Don't warn for empty 'if' body if there is a macro that expan... | Argyrios Kyrtzidis | 2010-11-20 | 2 | -2/+2 |
* | Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: | Argyrios Kyrtzidis | 2010-11-19 | 2 | -0/+2 |
* | Refactoring of Diagnostic class. | Argyrios Kyrtzidis | 2010-11-18 | 1 | -1/+1 |
* | Calculate the value kind of an expression when it's created and | John McCall | 2010-11-18 | 2 | -6/+10 |
* | For an Objective-C @synthesize statement, e.g., | Douglas Gregor | 2010-11-17 | 2 | -3/+6 |
* | Add a new expression kind, OpaqueValueExpr, which is useful for | John McCall | 2010-11-15 | 2 | -0/+19 |
* | Add a variant of GCC-style vector types for ARM NEON. | Bob Wilson | 2010-11-10 | 2 | -3/+3 |
* | Replace UsingDecl's SmallPtrSet of UsingShadowDecls with a linked list to avo... | Argyrios Kyrtzidis | 2010-11-10 | 2 | -16/+4 |