diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-04-28 22:58:25 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-04-28 22:58:25 +0000 |
commit | de57c2af61f9ac923958817a2ece16d91112f8cf (patch) | |
tree | 4ea1c760fc60643ac7240cd2dec782b7ebc53103 /clang/test/SemaCXX/scope-check.cpp | |
parent | 4b3dd38ce0627a52fcf0870f86897c3b454a655f (diff) | |
download | bcm5719-llvm-de57c2af61f9ac923958817a2ece16d91112f8cf.tar.gz bcm5719-llvm-de57c2af61f9ac923958817a2ece16d91112f8cf.zip |
Fix Sema tests using __try by adding triple
llvm-svn: 236057
Diffstat (limited to 'clang/test/SemaCXX/scope-check.cpp')
-rw-r--r-- | clang/test/SemaCXX/scope-check.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaCXX/scope-check.cpp b/clang/test/SemaCXX/scope-check.cpp index 1d2893c7e00..9e003329852 100644 --- a/clang/test/SemaCXX/scope-check.cpp +++ b/clang/test/SemaCXX/scope-check.cpp @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -fsyntax-only -verify -fblocks -fcxx-exceptions -fms-extensions %s -Wno-unreachable-code -// RUN: %clang_cc1 -fsyntax-only -verify -fblocks -fcxx-exceptions -fms-extensions -std=gnu++11 %s -Wno-unreachable-code +// RUN: %clang_cc1 -triple x86_64-windows -fsyntax-only -verify -fblocks -fcxx-exceptions -fms-extensions %s -Wno-unreachable-code +// RUN: %clang_cc1 -triple x86_64-windows -fsyntax-only -verify -fblocks -fcxx-exceptions -fms-extensions -std=gnu++11 %s -Wno-unreachable-code namespace testInvalid { Invalid inv; // expected-error {{unknown type name}} |