aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-12-17 01:21:03 +0000
committerBob Wilson <bob.wilson@apple.com>2010-12-17 01:21:03 +0000
commit14595d967fa03e9f5d82fd47bb43720aa52f1034 (patch)
treeb3fc9a1efcc8e1c5e34483a36de5045230553524 /utils
parentc32046e6eaffba890897da94ab8900d51bf9d18f (diff)
downloadexternal_llvm-14595d967fa03e9f5d82fd47bb43720aa52f1034.zip
external_llvm-14595d967fa03e9f5d82fd47bb43720aa52f1034.tar.gz
external_llvm-14595d967fa03e9f5d82fd47bb43720aa52f1034.tar.bz2
Neon intrinsic tests need to be compiled for Cortex-A9 for f16 support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122015 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/NeonEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp
index 4864db4..d019f1c 100644
--- a/utils/TableGen/NeonEmitter.cpp
+++ b/utils/TableGen/NeonEmitter.cpp
@@ -1492,7 +1492,7 @@ static std::string GenTest(const std::string &name,
void NeonEmitter::runTests(raw_ostream &OS) {
OS <<
"// RUN: %clang_cc1 -triple thumbv7-apple-darwin \\\n"
- "// RUN: -target-cpu cortex-a8 -ffreestanding -S -o - %s | FileCheck %s\n"
+ "// RUN: -target-cpu cortex-a9 -ffreestanding -S -o - %s | FileCheck %s\n"
"\n"
"#include <arm_neon.h>\n"
"\n";