Enhance hasConstantValue to ignore undef values in phi nodes. This allows it
[oota-llvm.git] / test / CFrontend / 2004-06-18-VariableLengthArrayOfStructures.c
1
2 struct S { };
3
4 int xxxx(int a) {
5   struct S comps[a];
6   comps[0];
7 }
8