From: Richard Smith Date: Thu, 20 Nov 2014 01:50:37 +0000 (+0000) Subject: Avoid earlier test interfering with later one. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8b9badef76ff45c93a2a46249cc59cdde4991cc;p=platform%2Fupstream%2Fllvm.git Avoid earlier test interfering with later one. llvm-svn: 222403 --- 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