Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git] / test / C++Frontend / 2006-03-01-GimplifyCrash.cpp
blobb0d00fe17ddfdab2dcfe65fee30f1fa6ef0b4e27
1 // RUN: %llvmgxx -S %s -o -
3 struct PrefMapElem {
4 virtual ~PrefMapElem();
5 unsigned int fPrefId;
6 };
8 int foo() {
9 PrefMapElem* fMap;
10 if (fMap[0].fPrefId == 1)
11 return 1;
13 return 0;