bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/2006-03-01-GimplifyCrash.cpp
2025-02-14 19:21:04 +01: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;
}