Sign in
llvm
/
llvm-project
/
51a86e75ddf3eac3057c901bbe5e750dea62c7c1
/
.
/
clang
/
test
/
CodeGenCXX
/
2006-03-01-GimplifyCrash.cpp
blob: b809751cd0f2ddb05cb2905adcef54edd67e020d [
file
] [
log
] [
blame
]
// 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
;
}