diff options
Diffstat (limited to 'test/CodeGenCXX/2006-03-01-GimplifyCrash.cpp')
-rw-r--r-- | test/CodeGenCXX/2006-03-01-GimplifyCrash.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGenCXX/2006-03-01-GimplifyCrash.cpp b/test/CodeGenCXX/2006-03-01-GimplifyCrash.cpp new file mode 100644 index 000000000000..b809751cd0f2 --- /dev/null +++ b/test/CodeGenCXX/2006-03-01-GimplifyCrash.cpp @@ -0,0 +1,14 @@ +// 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; +} |