Specified tls_model attribute properly. Should compile on Windows
now.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@312037
91177308-0d34-0410-b5e6-
96231b3b80d8
if (Add & FuzzerNoLink) {
CoverageFeatures |= CoverageTracePCGuard | CoverageIndirCall |
CoverageTraceCmp | CoveragePCTable;
- // Due to TLS differences, stack depth tracking is disabled on Mac/Win.
- if (!TC.getTriple().isOSDarwin() && !TC.getTriple().isOSWindows())
+ // Due to TLS differences, stack depth tracking is disabled on Mac.
+ if (!TC.getTriple().isOSDarwin())
CoverageFeatures |= CoverageStackDepth;
}