diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-01-13 01:49:57 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-01-13 01:49:57 +0000 |
commit | 5834ed6999980d90bd125dd1c8f9301e9d48f40c (patch) | |
tree | dee8157175900779a1dd1da88551b32cdffa5fe2 /test/Analysis/array-struct.c | |
parent | 1601ce437630c7aec93086512a9de60124826bae (diff) |
Add KillStruct to region store.
- put the killed region in the kill set.
- set its default value to unknown.
- removes all bindings for its subregions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62138 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/array-struct.c')
-rw-r--r-- | test/Analysis/array-struct.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Analysis/array-struct.c b/test/Analysis/array-struct.c index dd43a6d704..8f4bb044ba 100644 --- a/test/Analysis/array-struct.c +++ b/test/Analysis/array-struct.c @@ -46,6 +46,7 @@ void f4() { } // Struct variable in lvalue context. +// Assign UnknownVal to the whole struct. void f5() { struct s data; g1(&data); |