1 /* { dg-do compile } */
2 /* { dg-require-effective-target fpic } */
3 /* { dg-options "-fPIC" } */
4 
5 typedef int int64_t __attribute__ ((__mode__ (  __DI__ ))) ;
6 unsigned *
bar(int64_t which)7 bar (int64_t which)
8 {
9 	switch (which & 15 ) {
10 	case 0 :
11 		break;
12 	case 1 :
13 	case 5 :
14 	case 2 : ;
15 	}
16 
17 	return 0;
18 }
19