revert: neon-vfnms-1.c: New test.
2013-01-31 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> Revert. 2013-01-27 Amol Pise <amolpise15@gmail.com> * gcc.target/arm/neon-vfnms-1.c: New test. * gcc.target/arm/neon-vfnma-1.c: New test. From-SVN: r195617
This commit is contained in:
parent
e44978dcc7
commit
246a84e0d9
@ -1,3 +1,11 @@
|
||||
2013-01-31 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
|
||||
|
||||
Revert.
|
||||
2013-01-27 Amol Pise <amolpise15@gmail.com>
|
||||
|
||||
* gcc.target/arm/neon-vfnms-1.c: New test.
|
||||
* gcc.target/arm/neon-vfnma-1.c: New test.
|
||||
|
||||
2013-01-31 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/56157
|
||||
|
@ -1,12 +0,0 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-require-effective-target arm_neonv2_ok } */
|
||||
/* { dg-options "-O2 -ftree-vectorize -ffast-math" } */
|
||||
/* { dg-add-options arm_neonv2 } */
|
||||
/* { dg-final { scan-assembler "vfnma\\.f32\[ \]+\[dDqQ]" } } */
|
||||
|
||||
/* Verify that VFNMA is used. */
|
||||
void f1(int n, float a, float x[], float y[]) {
|
||||
int i;
|
||||
for (i = 0; i < n; ++i)
|
||||
y[i] = a * -x[i] - y[i];
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-require-effective-target arm_neonv2_ok } */
|
||||
/* { dg-options "-O2 -ftree-vectorize -ffast-math" } */
|
||||
/* { dg-add-options arm_neonv2 } */
|
||||
/* { dg-final { scan-assembler "vfnms\\.f32\[ \]+\[dDqQ]" } } */
|
||||
|
||||
/* Verify that VFNMS is used. */
|
||||
void f1(int n, float a, float x[], float y[]) {
|
||||
int i;
|
||||
for (i = 0; i < n; ++i)
|
||||
y[i] = a * x[i] - y[i];
|
||||
}
|
Loading…
Reference in New Issue
Block a user