From c8b9badef76ff45c93a2a46249cc59cdde4991cc 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. llvm-svn: 222403 --- clang/test/Preprocessor/has_attribute.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/test/Preprocessor/has_attribute.cpp b/clang/test/Preprocessor/has_attribute.cpp index 27c48d0..a077215 100644 --- a/clang/test/Preprocessor/has_attribute.cpp +++ b/clang/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.7.4