[PS5] Tweak dllexport test
authorPaul Robinson <paul.robinson@sony.com>
Tue, 31 May 2022 15:21:10 +0000 (08:21 -0700)
committerPaul Robinson <paul.robinson@sony.com>
Tue, 31 May 2022 15:22:15 +0000 (08:22 -0700)
Post-commit review pointed out that both PS4 and PS5 were using the
same -std argument, better to use different ones just in case.

clang/test/SemaCXX/dllexport.cpp

index 4aa1427..7d8bfda 100644 (file)
@@ -4,7 +4,7 @@
 // RUN: %clang_cc1 -triple x86_64-mingw32         -fsyntax-only -fms-extensions -verify -std=c++11 -Wunsupported-dll-base-class-template %s
 // RUN: %clang_cc1 -triple i686-windows-itanium   -fsyntax-only -fms-extensions -verify -std=c++11 -Wunsupported-dll-base-class-template -DWI %s
 // RUN: %clang_cc1 -triple x86_64-windows-itanium -fsyntax-only -fms-extensions -verify -std=c++1y -Wunsupported-dll-base-class-template -DWI %s
-// RUN: %clang_cc1 -triple x86_64-scei-ps4        -fsyntax-only -fdeclspec      -verify -std=c++1y -Wunsupported-dll-base-class-template -DWI %s
+// RUN: %clang_cc1 -triple x86_64-scei-ps4        -fsyntax-only -fdeclspec      -verify -std=c++11 -Wunsupported-dll-base-class-template -DWI %s
 // RUN: %clang_cc1 -triple x86_64-sie-ps5         -fsyntax-only -fdeclspec      -verify -std=c++1y -Wunsupported-dll-base-class-template -DWI %s
 
 // Helper structs to make templates more expressive.