From 5df594069342a75a1f83a5c351adbd2e7abd51ea Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 1 Mar 2006 22:45:12 +0000 Subject: testcase that crashed the new CFE git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26465 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/C++Frontend/2006-03-01-GimplifyCrash.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/C++Frontend/2006-03-01-GimplifyCrash.cpp (limited to 'test') diff --git a/test/C++Frontend/2006-03-01-GimplifyCrash.cpp b/test/C++Frontend/2006-03-01-GimplifyCrash.cpp new file mode 100644 index 0000000..b0d00fe --- /dev/null +++ b/test/C++Frontend/2006-03-01-GimplifyCrash.cpp @@ -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; +} -- cgit v1.1