xref: /llvm-project/clang/test/Driver/ps4-ps5-cpu-defaults.cpp (revision 501cc4ae304f29e392a2b7e21c316e3abf954daa)
1 // Check that on the PS4 we default to:
2 // -target-cpu btver2, not -tune-cpu generic
3 // And on the PS5 we default to:
4 // -target-cpu znver2, not -tune-cpu generic
5 
6 // RUN: %clang -target x86_64-scei-ps4 -c %s -### 2>&1 | FileCheck --check-prefixes=PS4,BOTH %s
7 // RUN: %clang -target x86_64-sie-ps5 -c %s -### 2>&1 | FileCheck --check-prefixes=PS5,BOTH %s
8 // PS4: "-target-cpu" "btver2"
9 // PS5: "-target-cpu" "znver2"
10 // BOTH-NOT: "-tune-cpu"
11