diff options
author | Renato Golin <renato.golin@linaro.org> | 2016-05-25 12:16:28 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2016-05-25 12:16:28 +0000 |
commit | 70381ed3e7abb9978ba4e44e6ed7206349e68ed3 (patch) | |
tree | 41e95f4d80206f63a1f9bddf68376051ab7cbe4e /clang/test/Preprocessor | |
parent | d4d4da74a698588f12e885989175cccf97a5633e (diff) | |
download | bcm5719-llvm-70381ed3e7abb9978ba4e44e6ed7206349e68ed3.tar.gz bcm5719-llvm-70381ed3e7abb9978ba4e44e6ed7206349e68ed3.zip |
[AArch64] Try to fix test from r270688 with unordered output
llvm-svn: 270689
Diffstat (limited to 'clang/test/Preprocessor')
-rw-r--r-- | clang/test/Preprocessor/aarch64-target-features.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/test/Preprocessor/aarch64-target-features.c b/clang/test/Preprocessor/aarch64-target-features.c index f218e5eb109..0fa95451c32 100644 --- a/clang/test/Preprocessor/aarch64-target-features.c +++ b/clang/test/Preprocessor/aarch64-target-features.c @@ -94,7 +94,10 @@ // RUN: %clang -target aarch64 -mcpu=cortex-a72 -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-MCPU-A72 %s // RUN: %clang -target aarch64 -mcpu=exynos-m1 -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-MCPU-M1 %s // RUN: %clang -target aarch64 -mcpu=kryo -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-MCPU-KRYO %s -// CHECK-MCPU-CYCLONE: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-feature" "+neon" "-target-feature" "+crypto" "-target-feature" "+zcm" "-target-feature" "+zcz" +// CHECK-MCPU-CYCLONE: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-feature" "+neon" +// CHECK-MCPU-CYCLONE-DAG: "-target-feature" "+crypto" +// CHECK-MCPU-CYCLONE-DAG: "-target-feature" "+zcm" +// CHECK-MCPU-CYCLONE-DAG: "-target-feature" "+zcz" // CHECK-MCPU-A35: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-feature" "+neon" "-target-feature" "+crc" "-target-feature" "+crypto" // CHECK-MCPU-A53: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-feature" "+neon" "-target-feature" "+crc" "-target-feature" "+crypto" // CHECK-MCPU-A57: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-feature" "+neon" "-target-feature" "+crc" "-target-feature" "+crypto" |