diff options
author | Renato Golin <renato.golin@linaro.org> | 2013-03-21 21:30:49 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2013-03-21 21:30:49 +0000 |
commit | a4d563526e116e395421979fa20c017d7c59d2a0 (patch) | |
tree | b996ea8e75b8d511f525d0b360959bd7baced3cd /llvm/test/CodeGen/ARM/fsubs.ll | |
parent | 1fff9ce35e643a201e9594bf2001cfaa966e2286 (diff) | |
download | bcm5719-llvm-a4d563526e116e395421979fa20c017d7c59d2a0.tar.gz bcm5719-llvm-a4d563526e116e395421979fa20c017d7c59d2a0.zip |
Fix Darwin NEON FP and increase coverage
llvm-svn: 177664
Diffstat (limited to 'llvm/test/CodeGen/ARM/fsubs.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/fsubs.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/fsubs.ll b/llvm/test/CodeGen/ARM/fsubs.ll index 3013e560040..617b01881a2 100644 --- a/llvm/test/CodeGen/ARM/fsubs.ll +++ b/llvm/test/CodeGen/ARM/fsubs.ll @@ -1,6 +1,7 @@ ; RUN: llc < %s -march=arm -mattr=+vfp2 | FileCheck %s -check-prefix=VFP2 -; RUN: llc < %s -march=arm -mcpu=cortex-a8 --enable-unsafe-fp-math | FileCheck %s -check-prefix=NFP1U -; RUN: llc < %s -march=arm -mcpu=cortex-a8 | FileCheck %s -check-prefix=NFP1 +; RUN: llc < %s -mtriple=arm-eabi -mcpu=cortex-a8 | FileCheck %s -check-prefix=NFP1 +; RUN: llc < %s -mtriple=arm-eabi -mcpu=cortex-a8 --enable-unsafe-fp-math | FileCheck %s -check-prefix=NFP1U +; RUN: llc < %s -mtriple=arm-darwin -mcpu=cortex-a8 | FileCheck %s -check-prefix=NFP1U ; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s -check-prefix=NFP0 define float @test(float %a, float %b) { |