diff options
author | Sanjay Patel <spatel@rotateright.com> | 2014-08-11 19:04:28 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2014-08-11 19:04:28 +0000 |
commit | 1f80cde8043497a4bab70620352e16ef98f5b998 (patch) | |
tree | c80c5ec5c330858fbfdfa03f1dc8afa45393dc28 /llvm/test/CodeGen/ARM/fnegs.ll | |
parent | afa10d3eda89164e6fdb3ae619341232b2c0b3b3 (diff) | |
download | bcm5719-llvm-1f80cde8043497a4bab70620352e16ef98f5b998.tar.gz bcm5719-llvm-1f80cde8043497a4bab70620352e16ef98f5b998.zip |
Correct a missing RUN line in the ARM codegen test for fneg ops. We should also explicitly specify +/-neonfp.
The bug was introduced at r99570 when use of "-arm-use-neon-fp" was removed.
Differential Revision: http://reviews.llvm.org/D4846
llvm-svn: 215377
Diffstat (limited to 'llvm/test/CodeGen/ARM/fnegs.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/fnegs.ll | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/fnegs.ll b/llvm/test/CodeGen/ARM/fnegs.ll index 36af8352433..99146b923a4 100644 --- a/llvm/test/CodeGen/ARM/fnegs.ll +++ b/llvm/test/CodeGen/ARM/fnegs.ll @@ -1,9 +1,12 @@ ; RUN: llc -mtriple=arm-eabi -mattr=+vfp2 %s -o - \ ; RUN: | FileCheck %s -check-prefix=VFP2 -; RUN: llc -mtriple=arm-eabi -mattr=+neon %s -o - \ +; RUN: llc -mtriple=arm-eabi -mattr=+neon,-neonfp %s -o - \ ; RUN: | FileCheck %s -check-prefix=NFP0 +; RUN: llc -mtriple=arm-eabi -mattr=+neon,+neonfp %s -o - \ +; RUN: | FileCheck %s -check-prefix=NFP1 + ; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - \ ; RUN: | FileCheck %s -check-prefix=CORTEXA8 |