Add remaining AVX instructions (most of them dealing with GR64 destinations. This...
[oota-llvm.git] / test / FrontendC / 2006-09-11-BitfieldRefCrash.c
1 // RUN: %llvmgcc %s -S -o -
2 // PR906
3
4 struct state_struct {
5   unsigned long long phys_frame: 50;
6   unsigned valid : 2;
7 } s;
8
9 int mem_access(struct state_struct *p) {
10   return p->valid;
11 }
12