view gcc/testsuite/g++.dg/torture/pr79905.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR target/79905
// { dg-do compile { target { powerpc*-*-* } } }
// { dg-require-effective-target powerpc_altivec_ok } 
// { dg-options "-maltivec" }

typedef int V4i __attribute__((vector_size(16)));
void a (V4i) {
  vector int b;
  a (b);
}