Age | Commit message (Expand) | Author |
2009-12-07 | Add EvalCallExpr interface to checker, and migrate the no-return function | Zhongxing Xu |
2009-12-07 | Instantiated or specialized class templates never have a key function. This (... | Anders Carlsson |
2009-12-07 | Rework how virtual member functions are marked. If a class has no key functio... | Anders Carlsson |
2009-12-07 | It's OK to try to emit a vtable definition more than once. Fixes PR5697. | Anders Carlsson |
2009-12-07 | getTemplateSpecializationKind should be const. | Anders Carlsson |
2009-12-07 | Erm, revert for the moment; I didn't test this as thoroughly as I should have | Eli Friedman |
2009-12-07 | Tweak the formula for non-virtual offsets to something which appears a bit | Eli Friedman |
2009-12-07 | Move key functions to a separate map. | Anders Carlsson |
2009-12-07 | DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia... | John McCall |
2009-12-07 | fix -dM with variadic macros, PR5699 | Chris Lattner |
2009-12-07 | some code cleanup. | Chris Lattner |
2009-12-07 | remove some defaulted params for consistency. | Chris Lattner |
2009-12-07 | reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. | Chris Lattner |
2009-12-07 | fix a crash on invalid I found when working on something unrelated. | Chris Lattner |
2009-12-07 | Move RequireCompleteType requirement for fields early into ActOnField so that | Eli Friedman |
2009-12-06 | Don't print a void return type for C++ constructors and destructors when gene... | Sam Weinig |
2009-12-06 | Be a bit more complete about accumulating SavedThisAdjustments. | Eli Friedman |
2009-12-06 | Work-in-progess rewrite of thunks: move thunk generation outside of vtable | Eli Friedman |
2009-12-06 | PointerUnion == PointerUnion does not do what I thought it did. Also, fix a t... | Douglas Gregor |
2009-12-06 | Integrate the following from the 'objective-rewrite' branch: | Steve Naroff |
2009-12-06 | revert my previous patch, it is breaking something and I don't have time | Chris Lattner |
2009-12-06 | Move helper onto CXXMethodDecl. | Eli Friedman |
2009-12-06 | Switch the std::multimap shadow map used in code completion to an | Douglas Gregor |
2009-12-06 | implement PR4451, improving error recovery for a mistaken : where a :: was | Chris Lattner |
2009-12-06 | simplify logic. | Chris Lattner |
2009-12-06 | Add rudimentary support for member pointers to CGDebugInfo. | Anders Carlsson |
2009-12-06 | remove some extraneous syntax: sourceloc implicitly converts to sourcerange. | Chris Lattner |
2009-12-06 | use new helpers to simplify code. | Chris Lattner |
2009-12-06 | Fix an off by one in findEndOfWord, which could scan past the end of the stri... | Daniel Dunbar |
2009-12-06 | Fix a slight oversight in computing whether a copy constructor is elidable. | Eli Friedman |
2009-12-06 | Unbreak and add test case for r90276, a situation in which getBuffer is expec... | Daniel Dunbar |
2009-12-06 | Change Preprocessor::EnterSourceFile to make ErrorStr non-optional, clients s... | Daniel Dunbar |
2009-12-06 | Add a pretty horrible hack to prevent clang from crashing with inconsistent PCH | Daniel Dunbar |
2009-12-06 | Integrate the following from the 'objective-rewrite' branch: | Steve Naroff |
2009-12-06 | Integrate the following from the 'objective-rewrite' branch: | Steve Naroff |
2009-12-06 | Integrate the following from the 'objective-rewrite' branch: | Steve Naroff |
2009-12-06 | Set the correct linkage for VTTs as well. | Anders Carlsson |
2009-12-06 | Integrate the following from the 'objective-rewrite' branch: | Steve Naroff |
2009-12-06 | More linkage improvements. | Anders Carlsson |
2009-12-06 | Pass the desired vtable linkage to GenerateVtable directly. Only call MaybeMa... | Anders Carlsson |
2009-12-06 | Make GenerateVtable a private member function of CGVtableInfo. | Anders Carlsson |
2009-12-05 | Fix for PR5693: shift some code into SetClassDeclAttributesFromBase so that | Eli Friedman |
2009-12-05 | Only emit the vtable definition if the class has a key function and we're emi... | Anders Carlsson |
2009-12-05 | If a class does not have a key function, its linkage should be weak_odr. | Anders Carlsson |
2009-12-05 | Use createGlobalVariable for creating vtable variables too. | Anders Carlsson |
2009-12-05 | Don't call back() on an empty vector. | Benjamin Kramer |
2009-12-05 | Integrate the following from the 'objective-rewrite' branch: | Steve Naroff |
2009-12-05 | CodeGenModule::GenerateVtable now returns a pointer directly to the vtable an... | Anders Carlsson |
2009-12-05 | Make sure that hte vtable always has an i8* array type. | Anders Carlsson |
2009-12-05 | Add a function for getting the vtable address point of a class. | Anders Carlsson |