Enhance hasConstantValue to ignore undef values in phi nodes. This allows it
[oota-llvm.git] / test / CFrontend / 2004-03-07-BitfieldCrash.c
1
2 struct s {
3   unsigned long long u33: 33;
4   unsigned long long u40: 40;
5 };
6
7 struct s a = { 1, 2};
8
9 int foo() {
10   return a.u40;
11 }