aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/ctu-import-threshold.c
AgeCommit message (Collapse)AuthorFilesLines
2020-07-09[analyzer] Add CTUImportCppThreshold for C++ filesGabor Marton1-0/+1
Summary: The default CTUImportThreshold (8) seems to be too conservative with C projects. We increase this value to 24 and we introduce another threshold for C++ source files (defaulted to 8) because their AST is way more compilcated than C source files. Differential Revision: https://reviews.llvm.org/D83475
2019-07-08[analyzer] Add analyzer option to limit the number of imported TUsEndre Fulop1-0/+5
Summary: During CTU analysis of complex projects, the loaded AST-contents of imported TUs can grow bigger than available system memory. This option introduces a threshold on the number of TUs to be imported for a single TU in order to prevent such cases. Differential Revision: https://reviews.llvm.org/D59798 llvm-svn: 365314