Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | CHECK-LABEL-ify some code gen tests to improve diagnostic experience when ↵ | Stephen Lin | 2013-08-15 | 1 | -6/+6 |
| | | | | | | tests fail. llvm-svn: 188447 | ||||
* | Don't assert in codegen on static data members which have NoLinkage. Fixes | Nick Lewycky | 2013-01-10 | 1 | -0/+20 |
| | | | | | | PR14825! llvm-svn: 172031 | ||||
* | Move unnamed_addr after the function arguments on Sabre's request. | Rafael Espindola | 2011-01-25 | 1 | -1/+1 |
| | | | | llvm-svn: 124210 | ||||
* | Add unnamed_addr to constructors and destructors. | Rafael Espindola | 2011-01-11 | 1 | -1/+1 |
| | | | | llvm-svn: 123197 | ||||
* | Do not give implicitly-defined virtual members functions | Douglas Gregor | 2010-05-06 | 1 | -0/+20 |
| | | | | | | | | | | | | | available_externally linkage, since they may not have been given a strong definition in another translation unit. Without this patch, the following test case fails to link with a GCC-compiled libstdc++: #include <sstream> int main() { std::basic_stringbuf<char> bs; } Fixes the last problem with the Boost.IO library. llvm-svn: 103208 | ||||
* | Give explicit template instantiations weak ODR linkage. Former | Douglas Gregor | 2010-03-13 | 1 | -5/+5 |
| | | | | | | | | | iterations of this patch gave explicit template instantiation link-once ODR linkage, which permitted the back end to eliminate unused symbols. Weak ODR linkage still requires the symbols to be generated. llvm-svn: 98441 | ||||
* | Re-revert the explicit template instantiation linkage patch. I am beginning ↵ | Douglas Gregor | 2010-03-13 | 1 | -5/+5 |
| | | | | | | to look incompetent llvm-svn: 98425 | ||||
* | Reinstate patch to turn explicit template instantiations into weak symbols | Douglas Gregor | 2010-03-13 | 1 | -5/+5 |
| | | | | llvm-svn: 98424 | ||||
* | Revert the linkage change for explicit template instantiations; something is ↵ | Douglas Gregor | 2010-03-12 | 1 | -5/+5 |
| | | | | | | amiss llvm-svn: 98332 | ||||
* | Give explicit template instantiations weak linkage (but don't defer | Douglas Gregor | 2010-03-12 | 1 | -5/+5 |
| | | | | | | them). Fixes PR6578. llvm-svn: 98328 | ||||
* | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar | 2009-12-15 | 1 | -1/+1 |
| | | | | | | | | | - This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446 | ||||
* | Make sure that explicitly instantiated functions get the right linkage. | Anders Carlsson | 2009-12-10 | 1 | -0/+24 |
llvm-svn: 91069 |