r179642 - [5/6] ARM Neon Intrinsic Tablegen Test Generator.
Michael Gottesman
mgottesman at apple.com
Tue Apr 16 15:55:01 PDT 2013
Author: mgottesman
Date: Tue Apr 16 17:55:01 2013
New Revision: 179642
URL: http://llvm.org/viewvc/llvm-project?rev=179642&view=rev
Log:
[5/6] ARM Neon Intrinsic Tablegen Test Generator.
Changed the test generation target cpu type from cortex-a9 to swift.
Reviewed by Bob Wilson.
Modified:
cfe/trunk/utils/TableGen/NeonEmitter.cpp
Modified: cfe/trunk/utils/TableGen/NeonEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/TableGen/NeonEmitter.cpp?rev=179642&r1=179641&r2=179642&view=diff
==============================================================================
--- cfe/trunk/utils/TableGen/NeonEmitter.cpp (original)
+++ cfe/trunk/utils/TableGen/NeonEmitter.cpp Tue Apr 16 17:55:01 2013
@@ -1761,7 +1761,8 @@ static std::string GenTest(const std::st
void NeonEmitter::runTests(raw_ostream &OS) {
OS <<
"// RUN: %clang_cc1 -triple thumbv7-apple-darwin \\\n"
- "// RUN: -target-cpu cortex-a9 -ffreestanding -S -o - %s | FileCheck %s\n"
+ "// RUN: -target-cpu swift -ffreestanding -Os -S -o - %s\\\n"
+ "// RUN: | FileCheck %s\n"
"\n"
"#include <arm_neon.h>\n"
"\n";
More information about the cfe-commits
mailing list