yaxunl created this revision. yaxunl added a reviewer: probinson. Herald added a project: All. yaxunl requested review of this revision.
Recover the checking for the default language standard for C++. https://reviews.llvm.org/D156127 Files: clang/test/Preprocessor/lang-std.cpp Index: clang/test/Preprocessor/lang-std.cpp =================================================================== --- clang/test/Preprocessor/lang-std.cpp +++ clang/test/Preprocessor/lang-std.cpp @@ -1,7 +1,12 @@ +// UNSUPPORTED: target={{.*-(ps4|ps5)}} /// Test default standards. -/// CUDA/HIP uses the same default standards as C++. +/// PS4/PS5 default to gnu++14. // RUN: %clang_cc1 -dM -E %s | grep __cplusplus >%T-cpp-std.txt +// RUN: cat %T-cpp-std.txt | FileCheck --check-prefix=CXX17 %s + +/// Check that CUDA/HIP uses the same default standards as C++. + // RUN: %clang_cc1 -dM -E -x cuda %s | grep __cplusplus >%T-cuda-cuda.txt // RUN: %clang_cc1 -dM -E -x hip %s | grep __cplusplus >%T-hip-std.txt // RUN: diff %T-cpp-std.txt %T-cuda-cuda.txt
Index: clang/test/Preprocessor/lang-std.cpp =================================================================== --- clang/test/Preprocessor/lang-std.cpp +++ clang/test/Preprocessor/lang-std.cpp @@ -1,7 +1,12 @@ +// UNSUPPORTED: target={{.*-(ps4|ps5)}} /// Test default standards. -/// CUDA/HIP uses the same default standards as C++. +/// PS4/PS5 default to gnu++14. // RUN: %clang_cc1 -dM -E %s | grep __cplusplus >%T-cpp-std.txt +// RUN: cat %T-cpp-std.txt | FileCheck --check-prefix=CXX17 %s + +/// Check that CUDA/HIP uses the same default standards as C++. + // RUN: %clang_cc1 -dM -E -x cuda %s | grep __cplusplus >%T-cuda-cuda.txt // RUN: %clang_cc1 -dM -E -x hip %s | grep __cplusplus >%T-hip-std.txt // RUN: diff %T-cpp-std.txt %T-cuda-cuda.txt
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits