diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-11-20 01:50:37 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-11-20 01:50:37 +0000 |
commit | c8b9badef76ff45c93a2a46249cc59cdde4991cc (patch) | |
tree | 036199ec2dddfe948a838f54461de06ea731cb6b | |
parent | 6adb42e1ac111305fcba657e6c7fe02fcc9f83e2 (diff) | |
download | bcm5719-llvm-c8b9badef76ff45c93a2a46249cc59cdde4991cc.tar.gz bcm5719-llvm-c8b9badef76ff45c93a2a46249cc59cdde4991cc.zip |
Avoid earlier test interfering with later one.
llvm-svn: 222403
-rw-r--r-- | clang/test/Preprocessor/has_attribute.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Preprocessor/has_attribute.cpp b/clang/test/Preprocessor/has_attribute.cpp index 27c48d077ce..a077215a8a6 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
|