diff options
author | James Molloy <james.molloy@arm.com> | 2014-04-16 15:33:48 +0000 |
---|---|---|
committer | James Molloy <james.molloy@arm.com> | 2014-04-16 15:33:48 +0000 |
commit | 75f5f9e629082c2ee084bfbedf6e52504d4d1d01 (patch) | |
tree | 604f04d2024aaadff7ab96118c72db6815012364 /clang/test/CodeGenCXX/poly-unsigned.cpp | |
parent | ef7b34d403b85aea930f69241d77ad23ff10073d (diff) | |
download | bcm5719-llvm-75f5f9e629082c2ee084bfbedf6e52504d4d1d01.tar.gz bcm5719-llvm-75f5f9e629082c2ee084bfbedf6e52504d4d1d01.zip |
[ARM64] Allow the disabling of NEON and crypto instructions. Update tests to pass -target-feature +neon.
llvm-svn: 206394
Diffstat (limited to 'clang/test/CodeGenCXX/poly-unsigned.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/poly-unsigned.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/poly-unsigned.cpp b/clang/test/CodeGenCXX/poly-unsigned.cpp index 9851a06089d..e2ab430a969 100644 --- a/clang/test/CodeGenCXX/poly-unsigned.cpp +++ b/clang/test/CodeGenCXX/poly-unsigned.cpp @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -triple arm64-apple-ios -ffreestanding -S -emit-llvm -o - %s | FileCheck --check-prefix=CHECK-UNSIGNED-POLY %s -// RUN: %clang_cc1 -triple arm64-linux-gnu -ffreestanding -S -emit-llvm -o - %s | FileCheck --check-prefix=CHECK-UNSIGNED-POLY %s +// RUN: %clang_cc1 -triple arm64-apple-ios -target-feature +neon -ffreestanding -S -emit-llvm -o - %s | FileCheck --check-prefix=CHECK-UNSIGNED-POLY %s +// RUN: %clang_cc1 -triple arm64-linux-gnu -target-feature +neon -ffreestanding -S -emit-llvm -o - %s | FileCheck --check-prefix=CHECK-UNSIGNED-POLY %s // RUN: %clang_cc1 -triple armv7-apple-ios -ffreestanding -target-cpu cortex-a8 -S -emit-llvm -o - %s | FileCheck --check-prefix=CHECK-SIGNED-POLY %s #include <arm_neon.h> |