view gcc/testsuite/gcc.dg/vect/pr50635.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */

typedef signed long int32_t;
typedef char int8_t;

void f0a(int32_t * result, int32_t * arg1, int8_t * arg2, int32_t temp_3)
{
  int idx;
  for (idx=0;idx<10;idx += 1)
    {
      int32_t temp_4;
      int32_t temp_12;

      temp_4 = (-2 & arg2[idx]) + temp_3;
      temp_12 = -2 * arg2[idx] + temp_4;
      result[idx] = temp_12;
    }
}