diff options
Diffstat (limited to 'test/Analysis/reference.cpp')
-rw-r--r-- | test/Analysis/reference.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Analysis/reference.cpp b/test/Analysis/reference.cpp index f169416..51c8aae 100644 --- a/test/Analysis/reference.cpp +++ b/test/Analysis/reference.cpp @@ -1,9 +1,10 @@ // RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -analyzer-constraints=range -verify %s + typedef typeof(sizeof(int)) size_t; void malloc (size_t); void f1() { - int const &i = 3; + int const &i = 3; // <--- **FIXME** This is currently not being modeled correctly. int b = i; int *p = 0; |