Age | Commit message (Expand) | Author |
2009-05-29 | Add code for emitting C++ destructors. Not used yet. | Anders Carlsson |
2009-05-26 | Handle the edge case of a weak function with incomplete type correctly. | Eli Friedman |
2009-05-16 | extern "C" should preserve the 'extern' qualifier for VarDecls. Fixes 6853728. | Anders Carlsson |
2009-05-16 | Reflow some comments. | Mike Stump |
2009-05-15 | A C++ member function always has either weak linkage (if it's inline or defin... | Anders Carlsson |
2009-05-12 | push GlobalDecl through enough of the CodeGenModule interfaces | Chris Lattner |
2009-05-12 | add an initial stab at emitting deferred c++ inline functions. This handles ... | Chris Lattner |
2009-05-12 | cleanups, no functionality change. | Chris Lattner |
2009-05-12 | revert my previous patch, I committed the wrong file. | Chris Lattner |
2009-05-12 | static methods don't get this pointers. | Chris Lattner |
2009-05-05 | When defining a function whose type has no prototype, make an effort | Chris Lattner |
2009-05-05 | Refactor global decls to hold either a regular Decl or a CXXConstructorDecl +... | Anders Carlsson |
2009-05-03 | Fix comment to account for r70786. | Eli Friedman |
2009-05-03 | PR4133: fix always_inline implementation to be consistent with gcc. | Eli Friedman |
2009-04-28 | Improve compatibility with GCC regarding inline semantics in GNU89 | Douglas Gregor |
2009-04-23 | Fix handling of C99 "extern inline" semantics when dealing with | Douglas Gregor |
2009-04-23 | Eliminate the three SmallVectors in ObjCImplDecl (for instance | Douglas Gregor |
2009-04-22 | Don't convert interface types (to structs) as part of CodeGenTypes. | Daniel Dunbar |
2009-04-22 | Fix some mishandling of the attr(gnu_inline) mode when used with | Chris Lattner |
2009-04-21 | Fix emission of static tentative definitions referenced from other static fun... | Douglas Gregor |
2009-04-21 | Explictly track tentative definitions within Sema, then hand those | Douglas Gregor |
2009-04-20 | the __gnuc_inline__ attribute is actually named __gnu_inline__, | Chris Lattner |
2009-04-19 | PR3853: Add CodeGen support for __thread. | Eli Friedman |
2009-04-19 | silence a warning, it isn't clear what the right answer is here, | Chris Lattner |
2009-04-18 | FunctionDecl::getBody() is getting an ASTContext argument for use in | Douglas Gregor |
2009-04-17 | Add support for generating (very basic) C++ destructors. These aren't called ... | Anders Carlsson |
2009-04-17 | Attributes on block functions were not being set. | Daniel Dunbar |
2009-04-16 | Ensure that the most recent declaration of a tentative definition wins | Daniel Dunbar |
2009-04-15 | Defer generation of tentative definitions. | Daniel Dunbar |
2009-04-15 | Start attempting to generate code for C++ ctors. | Anders Carlsson |
2009-04-14 | Comment fix. | Daniel Dunbar |
2009-04-14 | Fix PR3988: extern inline functions get strong symbol definitions in | Chris Lattner |
2009-04-14 | implement codegen support for __attribute((__gnuc_inline__)), | Chris Lattner |
2009-04-14 | Refactor how attributes are set on values. | Daniel Dunbar |
2009-04-14 | Split SetGlobalValueAttributes into definition/declaration halves. | Daniel Dunbar |
2009-04-14 | Rename (one) SetFunctionAttributes to SetLLVMFunctionAttributes to | Daniel Dunbar |
2009-04-14 | Reduce indentation, no functionality change. | Daniel Dunbar |
2009-04-14 | defer emission of always_inline, extern_inline, and inline functions (when | Chris Lattner |
2009-04-14 | give always_inline functions internal linkage. If they cannot be | Chris Lattner |
2009-04-14 | set the linkage of an inline function according to its language rules. | Chris Lattner |
2009-04-14 | Add a comment on SetGlobalValueAttributes. | Daniel Dunbar |
2009-04-14 | add a new enum type for linkage, no functionality change. | Chris Lattner |
2009-04-14 | Clean up handling of visibility. | Daniel Dunbar |
2009-04-14 | reduce indentation, no functionality change. | Chris Lattner |
2009-04-14 | do not set visibility on "private" or "available externally" linkage objects. | Chris Lattner |
2009-04-13 | Update to use hasAttr() instead of getAttr(). | Daniel Dunbar |
2009-04-13 | Move/update recent FIXME (wrt UTF-8 checking for ObjC @-strings). | Steve Naroff |
2009-04-13 | Fixed crasher in <rdar://problem/6780904> [irgen] Assertion failed: (Result =... | Steve Naroff |
2009-04-10 | Internal variables could mistakenly have "hidden" visibility when | Daniel Dunbar |
2009-04-10 | reject codegen of __thread variables as unimplemented, rdar://6775265 | Chris Lattner |