[llvm-commits] [llvm] r122015 - /llvm/trunk/utils/TableGen/NeonEmitter.cpp
Bob Wilson
bob.wilson at apple.com
Thu Dec 16 17:21:03 PST 2010
Author: bwilson
Date: Thu Dec 16 19:21:03 2010
New Revision: 122015
URL: http://llvm.org/viewvc/llvm-project?rev=122015&view=rev
Log:
Neon intrinsic tests need to be compiled for Cortex-A9 for f16 support.
Modified:
llvm/trunk/utils/TableGen/NeonEmitter.cpp
Modified: llvm/trunk/utils/TableGen/NeonEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/NeonEmitter.cpp?rev=122015&r1=122014&r2=122015&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/NeonEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/NeonEmitter.cpp Thu Dec 16 19:21:03 2010
@@ -1492,7 +1492,7 @@
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";
More information about the llvm-commits
mailing list