From: Will Schmidt Date: Thu, 1 Jun 2017 22:00:45 +0000 (+0000) Subject: fold-vec-logical-ors-longlong.c: Update the target to power8-vector. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=052754ea183cd0da87af930ae07355137ca68a81;p=gcc.git fold-vec-logical-ors-longlong.c: Update the target to power8-vector. [gcc/testsuite] 2017-05-26 Will Schmidt * gcc.target/powerpc/fold-vec-logical-ors-longlong.c: Update the target to power8-vector. From-SVN: r248805 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1f1bc3cc9c1..2785850d685 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2017-06-01 Will Schmidt + + * gcc.target/powerpc/fold-vec-logical-ors-longlong.c: + Update the target to power8-vector. + 2017-06-01 David Malcolm * lib/gcc-dg.exp: Ensure GCC_COLORS is unset. diff --git a/gcc/testsuite/gcc.target/powerpc/fold-vec-logical-ors-longlong.c b/gcc/testsuite/gcc.target/powerpc/fold-vec-logical-ors-longlong.c index 7ca23fb2454..10c69d3d87b 100644 --- a/gcc/testsuite/gcc.target/powerpc/fold-vec-logical-ors-longlong.c +++ b/gcc/testsuite/gcc.target/powerpc/fold-vec-logical-ors-longlong.c @@ -2,8 +2,8 @@ * long long inputs produce the right results. */ /* { dg-do compile } */ -/* { dg-require-effective-target powerpc_vsx_ok } */ -/* { dg-options "-mvsx -O2" } */ +/* { dg-require-effective-target powerpc_p8vector_ok } */ +/* { dg-options "-mpower8-vector -O2" } */ #include @@ -151,11 +151,11 @@ test6_nor (vector unsigned long long x, vector unsigned long long y) return *foo; } -// Codegen on power7 is such that the vec_or() tests generate more xxlor -// instructions than what is seen on power8 or newer. -// Thus, an additional target clause for the xxlor instruction check. -/* { dg-final { scan-assembler-times {\mxxlor\M} 6 { target p8vector_hw } } } */ -/* { dg-final { scan-assembler-times {\mxxlor\M} 24 { target { ! p8vector_hw } } } } */ +// The number of xxlor instructions generated varies between 6 and 24 for +// older systems (power6,power7), as well as for 32-bit versus 64-bit targets. +// For simplicity, this test now only targets "powerpc_p8vector_ok" environments +// where the answer is expected to be 6. +/* { dg-final { scan-assembler-times {\mxxlor\M} 6 } } */ /* { dg-final { scan-assembler-times {\mxxlxor\M} 6 } } */ /* { dg-final { scan-assembler-times {\mxxlnor\M} 6 } } */