Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
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
;
}