android_mt6572_jiabo/external/clang/test/CodeGenCXX/2006-03-01-GimplifyCrash.cpp
2025-09-05 16:56:03 +08:00

14 lines
204 B
C++

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