aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2018-12-17 15:14:08 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2018-12-17 15:14:08 +0000
commita6e58888804f4541e1c705be7c989b4ec9096108 (patch)
tree06b94e60629cde9cf86cf2aa279bab90648f42cc /clang/unittests
parentf9c9bc09ab76100029eca022ef5ea476054d916c (diff)
Build ASTImporterTest.cpp with /bigobj on MSVC builds to keep llvm-clang-x86_64-expensive-checks-win buildbot happy
llvm-svn: 349357
Diffstat (limited to 'clang/unittests')
-rw-r--r--clang/unittests/AST/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/unittests/AST/CMakeLists.txt b/clang/unittests/AST/CMakeLists.txt
index 6621ce681bc4..c416e5b996b4 100644
--- a/clang/unittests/AST/CMakeLists.txt
+++ b/clang/unittests/AST/CMakeLists.txt
@@ -2,6 +2,10 @@ set(LLVM_LINK_COMPONENTS
Support
)
+if (MSVC)
+ set_source_files_properties(ASTImporterTest.cpp PROPERTIES COMPILE_FLAGS /bigobj)
+endif()
+
add_clang_unittest(ASTTests
ASTContextParentMapTest.cpp
ASTImporterTest.cpp