diff options
-rw-r--r-- | test/Analysis/misc-ps-region-store.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Analysis/misc-ps-region-store.cpp b/test/Analysis/misc-ps-region-store.cpp new file mode 100644 index 0000000000..c1e03bb0d9 --- /dev/null +++ b/test/Analysis/misc-ps-region-store.cpp @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -triple i386-apple-darwin9 -analyze -analyzer-experimental-internal-checks -checker-cfref -analyzer-store=region -verify -fblocks -analyzer-opt-analyze-nested-blocks %s +// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -analyze -analyzer-experimental-internal-checks -checker-cfref -analyzer-store=region -verify -fblocks -analyzer-opt-analyze-nested-blocks %s +// XFAIL: * + +// This test case currently crashes because of an assertion failure. +char &test1_aux(); +char *test1() { + return &test1_aux(); +} |