From ed6f1747110dee3a1ebd425e02d57de2f6e091e5 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 20 Nov 2014 01:50:37 +0000 Subject: [PATCH] Avoid earlier test interfering with later one. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@222403 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Preprocessor/has_attribute.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.50.1