From: Richard Smith Date: Thu, 20 Nov 2014 01:50:37 +0000 (+0000) Subject: Avoid earlier test interfering with later one. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed6f1747110dee3a1ebd425e02d57de2f6e091e5;p=clang Avoid earlier test interfering with later one. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@222403 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Preprocessor/has_attribute.cpp b/test/Preprocessor/has_attribute.cpp index 27c48d077c..a077215a8a 100644 --- a/test/Preprocessor/has_attribute.cpp +++ b/test/Preprocessor/has_attribute.cpp @@ -5,9 +5,9 @@ int has_cxx11_carries_dep(); #endif -// CHECK: has_clang_fallthrough +// CHECK: has_clang_fallthrough_1 #if __has_cpp_attribute(clang::fallthrough) - int has_clang_fallthrough(); + int has_clang_fallthrough_1(); #endif // CHECK: does_not_have_selectany