1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

testcase that crashed the new CFE

llvm-svn: 26465
This commit is contained in:
Chris Lattner 2006-03-01 22:45:12 +00:00
parent e99e63bfc8
commit 807844e2ef

View File

@ -0,0 +1,14 @@
// 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;
}