1 /* PR debug/83621 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -g" } */
4 /* { dg-additional-options "-fno-common" { target hppa*-*-hpux* } } */
5 
6 typedef int __attribute__ ((__vector_size__ (64))) V;
7 V v;
8 
9 void
foo()10 foo ()
11 {
12   V u = v >> 1;
13 }
14