diff options
author | Justin Bogner <mail@justinbogner.com> | 2014-08-15 17:58:56 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2014-08-15 17:58:56 +0000 |
commit | d2308ea5fd583e8d342d9e8baa00486b57c6a9a9 (patch) | |
tree | de1fd85c42d8be4c0742bdd4f7208d611a483468 /libcxx/src/valarray.cpp | |
parent | b2baffaffd914c58375a682b567415f17b93f5bd (diff) | |
download | llvm-d2308ea5fd583e8d342d9e8baa00486b57c6a9a9.zip llvm-d2308ea5fd583e8d342d9e8baa00486b57c6a9a9.tar.gz llvm-d2308ea5fd583e8d342d9e8baa00486b57c6a9a9.tar.bz2 |
Revert "Turn off extern templates for most uses."
Turning off explicit template instantiation leads to a pretty
significant build time and code size cost. We're better off dealing
with ABI incompatibility issues that come up in a less heavy handed
way.
This reverts commit r189610.
llvm-svn: 215740
Diffstat (limited to 'libcxx/src/valarray.cpp')
-rw-r--r-- | libcxx/src/valarray.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libcxx/src/valarray.cpp b/libcxx/src/valarray.cpp index e4c9ed0..2d8db52 100644 --- a/libcxx/src/valarray.cpp +++ b/libcxx/src/valarray.cpp @@ -7,8 +7,6 @@ // //===----------------------------------------------------------------------===// -#define _LIBCPP_EXTERN_TEMPLATE(...) extern template __VA_ARGS__; - #include "valarray" _LIBCPP_BEGIN_NAMESPACE_STD |