diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-03-25 23:47:34 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-03-25 23:47:34 +0000 |
commit | 7ec7a0e96b34fedf11445c1dde27a4fac8e8a1a7 (patch) | |
tree | 844f71bed4cb30bffca7bb3ce57d8c8c493f73f8 /test/CodeGen/ARM/fnmacs.ll | |
parent | 78e496e165e3093f3d7373e50da1c91b9937bc69 (diff) | |
download | external_llvm-7ec7a0e96b34fedf11445c1dde27a4fac8e8a1a7.zip external_llvm-7ec7a0e96b34fedf11445c1dde27a4fac8e8a1a7.tar.gz external_llvm-7ec7a0e96b34fedf11445c1dde27a4fac8e8a1a7.tar.bz2 |
switch the flag for using NEON for SP floating point to a subtarget 'feature'.
Re-commit. This time complete with testsuite updates.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99570 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/fnmacs.ll')
-rw-r--r-- | test/CodeGen/ARM/fnmacs.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/fnmacs.ll b/test/CodeGen/ARM/fnmacs.ll index 724947e..1d1d06a 100644 --- a/test/CodeGen/ARM/fnmacs.ll +++ b/test/CodeGen/ARM/fnmacs.ll @@ -1,6 +1,6 @@ ; RUN: llc < %s -march=arm -mattr=+vfp2 | FileCheck %s -check-prefix=VFP2 -; RUN: llc < %s -march=arm -mattr=+neon -arm-use-neon-fp=0 | FileCheck %s -check-prefix=NEON -; RUN: llc < %s -march=arm -mattr=+neon -arm-use-neon-fp=1 | FileCheck %s -check-prefix=NEONFP +; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s -check-prefix=NEON +; RUN: llc < %s -march=arm -mcpu=cortex-a8 | FileCheck %s -check-prefix=NEONFP define float @test(float %acc, float %a, float %b) { entry: |