[PATCH] D35757: Work around an MSVC2017 update 3 codegen bug.

Shoaib Meenai via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 21 21:18:46 PDT 2017


smeenai added inline comments.


================
Comment at: lib/AST/StmtProfile.cpp:1367
 
+#if defined(_MSC_VER) && _MSC_VER == 1911
+// Work around https://developercommunity.visualstudio.com/content/problem/84002/clang-cl-when-built-with-vc-2017-crashes-cause-vc.html
----------------
Is it worth using `_MSC_FULL_VER` to limit this to Update 3 specifically?


https://reviews.llvm.org/D35757





More information about the cfe-commits mailing list