We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be7d633 commit d0ccd55Copy full SHA for d0ccd55
clang-tools-extra/clangd/Diagnostics.cpp
@@ -74,8 +74,9 @@ bool mentionsMainFile(const Diag &D) {
74
}
75
76
bool isBlacklisted(const Diag &D) {
77
- // clang will always fail to MS ASM as we don't link in desc + asm parser.
78
- if (D.ID == clang::diag::err_msasm_unable_to_create_target)
+ // clang will always fail parsing MS ASM, we don't link in desc + asm parser.
+ if (D.ID == clang::diag::err_msasm_unable_to_create_target ||
79
+ D.ID == clang::diag::err_msasm_unsupported_arch)
80
return true;
81
return false;
82
0 commit comments