From 16f5ce5a74cac5e76001f66afd8f0f3bc118af3c Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Fri, 15 May 2020 14:20:59 -0400 Subject: [PATCH] [libc++] Remove -ftemplate-depth when running tests It doesn't appear to be needed anymore with the Clang on our build bots. --- libcxx/utils/libcxx/test/config.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index a20206caff62..995d0e108f29 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -438,10 +438,6 @@ class Configuration(object): self.cxx.compile_flags += ['-I' + os.path.join(pstl_src_root, 'test')] self.config.available_features.add('parallel-algorithms') - # FIXME(EricWF): variant_size.pass.cpp requires a slightly larger - # template depth with older Clang versions. - self.cxx.addCompileFlagIfSupported('-ftemplate-depth=270') - def configure_compile_flags_header_includes(self): support_path = os.path.join(self.libcxx_src_root, 'test', 'support') self.configure_config_site_header()