summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticDriverKinds.td
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-03-15 16:35:13 +0000
committerZachary Turner <zturner@google.com>2017-03-15 16:35:13 +0000
commitba3ebcd8c75d0803a1d3252ed143cdcfede7511a (patch)
tree3f55da65db1b2e0fb8d5abf48fc5796efba30a4f /include/clang/Basic/DiagnosticDriverKinds.td
parent9a4d019389c762a32274ed1ca1ead93f79acbcd2 (diff)
Disable warning about MSVC not found.
When this test runs on bots that are configured to default to MSVC, but MSVC isn't actually installed, we can emit a warning that MSVC is not found. Since MSVC isn't actually needed for this test to succeed, just disable this warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@297858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticDriverKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticDriverKinds.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticDriverKinds.td b/include/clang/Basic/DiagnosticDriverKinds.td
index 6e744db2cb..ea597a8388 100644
--- a/include/clang/Basic/DiagnosticDriverKinds.td
+++ b/include/clang/Basic/DiagnosticDriverKinds.td
@@ -286,5 +286,5 @@ def err_drv_defsym_invalid_symval : Error<"Value is not an integer: %0">;
def warn_drv_msvc_not_found : Warning<
"unable to find a Visual Studio installation; "
"try running Clang from a developer command prompt">,
- InGroup<InvalidOrNonExistentDirectory>;
+ InGroup<DiagGroup<"msvc-not-found">>;
}