llvm-6502/test/C++Frontend/2006-03-01-GimplifyCrash.cpp

15 lines
197 B
C++
Raw Normal View History

// RUN: %llvmgxx -S %s -o -
struct PrefMapElem {
virtual ~PrefMapElem();
unsigned int fPrefId;
};
int foo() {
PrefMapElem* fMap;
if (fMap[0].fPrefId == 1)
return 1;
return 0;
}