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/algorithm.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/algorithm.cpp')
-rw-r--r-- | libcxx/src/algorithm.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libcxx/src/algorithm.cpp b/libcxx/src/algorithm.cpp index 10c4c331..6d5cf7c 100644 --- a/libcxx/src/algorithm.cpp +++ b/libcxx/src/algorithm.cpp @@ -7,7 +7,6 @@ // //===----------------------------------------------------------------------===// -#define _LIBCPP_EXTERN_TEMPLATE(...) extern template __VA_ARGS__; #include "algorithm" #include "random" #include "mutex" |