diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-03-19 23:48:41 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-03-19 23:48:41 +0000 |
commit | e7d78882b4ca08b9e24f140dbb97875310f67ec7 (patch) | |
tree | d6b4cc7071d8c79a50986da762cc9955e8e46fba /clang/test/SemaCXX/warn-everthing.cpp | |
parent | 0a2ac9052505566db08e466bd21072f0962f09d3 (diff) | |
download | bcm5719-llvm-e7d78882b4ca08b9e24f140dbb97875310f67ec7.tar.gz bcm5719-llvm-e7d78882b4ca08b9e24f140dbb97875310f67ec7.zip |
Fix crash when querying the CFG reported when using the thread safety analysis
on code using multi-dimensional arrays. Fix by DeLesley Hutchins, and reported in
PR 12271.
llvm-svn: 153067
Diffstat (limited to 'clang/test/SemaCXX/warn-everthing.cpp')
-rw-r--r-- | clang/test/SemaCXX/warn-everthing.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/warn-everthing.cpp b/clang/test/SemaCXX/warn-everthing.cpp new file mode 100644 index 00000000000..144a8f90df2 --- /dev/null +++ b/clang/test/SemaCXX/warn-everthing.cpp @@ -0,0 +1,13 @@ +// RUN: %clang -Weverything -fsyntax-only %s -verify + +// This previously crashed due to a bug in the CFG. Exercising all +// warnings helps check CFG construction. +class PR12271 { +public: + PR12271(); + ~PR12271(); +}; + +void testPR12271() { + PR12271 a[1][1]; +}
\ No newline at end of file |