Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / aarch64-cortex-a710.c
blobd84b5b2ee7e524245f3c25d5b11623afe4bdd4bb
1 // RUN: %clang --target=aarch64 -mcpu=cortex-a710 -### -c %s 2>&1 | FileCheck -check-prefix=CORTEX-A710 %s
2 // CORTEX-A710: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "cortex-a710"
3 // CORTEX-A710-NOT: "-target-feature" "{{[+-]}}sm4"
4 // CORTEX-A710-NOT: "-target-feature" "{{[+-]}}sha3"
5 // CORTEX-A710-NOT: "-target-feature" "{{[+-]}}aes"
6 // CORTEX-A710-SAME: {{$}}
7 // RUN: %clang --target=aarch64 -mcpu=cortex-a710+crypto -### -c %s 2>&1 | FileCheck -check-prefix=CORTEX-A710-CRYPTO %s
8 // CORTEX-A710-CRYPTO: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-feature" "+sm4" "-target-feature" "+sha3" "-target-feature" "+sha2" "-target-feature" "+aes"