diff options
author | Zachary Turner <zturner@google.com> | 2017-03-15 16:35:13 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-03-15 16:35:13 +0000 |
commit | 00c5343d65c6ab2a60e7726b551903fe12f79fec (patch) | |
tree | cb2b89a4b3c02fd232aa3b7e2db697ed9b83d765 /clang/test/Misc/backend-stack-frame-diagnostics.cpp | |
parent | d691cf731cda6b6b21b0653df6736edcb8d54728 (diff) | |
download | bcm5719-llvm-00c5343d65c6ab2a60e7726b551903fe12f79fec.tar.gz bcm5719-llvm-00c5343d65c6ab2a60e7726b551903fe12f79fec.zip |
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.
llvm-svn: 297858
Diffstat (limited to 'clang/test/Misc/backend-stack-frame-diagnostics.cpp')
-rw-r--r-- | clang/test/Misc/backend-stack-frame-diagnostics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Misc/backend-stack-frame-diagnostics.cpp b/clang/test/Misc/backend-stack-frame-diagnostics.cpp index a850f225395..bb5566f1a43 100644 --- a/clang/test/Misc/backend-stack-frame-diagnostics.cpp +++ b/clang/test/Misc/backend-stack-frame-diagnostics.cpp @@ -8,7 +8,7 @@ // Test that link invocations don't emit an "argument unused during compilation" diagnostic. // RUN: touch %t.o -// RUN: %clang -Werror -Wno-liblto -Wframe-larger-than=0 %t.o -### 2>&1 | not grep ' error: ' +// RUN: %clang -Werror -Wno-msvc-not-found -Wno-liblto -Wframe-larger-than=0 %t.o -### 2>&1 | not grep ' error: ' // TODO: Support rich backend diagnostics for Objective-C methods. |