[clang] 50511a4 - Add SemaTemplateDeduction.cpp to /bigobj

Erich Keane via cfe-commits cfe-commits at lists.llvm.org
Fri Apr 17 16:33:14 PDT 2020


Author: Erich Keane
Date: 2020-04-17T16:33:07-07:00
New Revision: 50511a406df4475984e5c51feadada2c92aaf97a

URL: https://github.com/llvm/llvm-project/commit/50511a406df4475984e5c51feadada2c92aaf97a
DIFF: https://github.com/llvm/llvm-project/commit/50511a406df4475984e5c51feadada2c92aaf97a.diff

LOG: Add SemaTemplateDeduction.cpp to /bigobj

According to Nathaniel McVicar on the review for D73967,
SematTemplateDeduction hit the 16 bit COFF limit.  This adds it to the
/bigobj list.

Added: 
    

Modified: 
    clang/lib/Sema/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/lib/Sema/CMakeLists.txt b/clang/lib/Sema/CMakeLists.txt
index 89ea6904de85..98f121f4b6f0 100644
--- a/clang/lib/Sema/CMakeLists.txt
+++ b/clang/lib/Sema/CMakeLists.txt
@@ -8,6 +8,7 @@ if (MSVC)
   set_source_files_properties(SemaExpr.cpp PROPERTIES COMPILE_FLAGS /bigobj)
   set_source_files_properties(SemaExprCXX.cpp PROPERTIES COMPILE_FLAGS /bigobj)
   set_source_files_properties(SemaTemplate.cpp PROPERTIES COMPILE_FLAGS /bigobj)
+  set_source_files_properties(SemaTemplateDeduction.cpp PROPERTIES COMPILE_FLAGS /bigobj)
 endif()
 
 clang_tablegen(OpenCLBuiltins.inc -gen-clang-opencl-builtins


        


More information about the cfe-commits mailing list