forked from OSchip/llvm-project
SymbolicRegions really have unknown sizes.
llvm-svn: 63929
This commit is contained in:
parent
dec48a50df
commit
e42755334c
|
@ -481,9 +481,7 @@ SVal RegionStoreManager::getSizeInElements(const GRState* St,
|
|||
return UnknownVal();
|
||||
}
|
||||
|
||||
if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(R)) {
|
||||
// FIXME: Unsupported yet.
|
||||
SR = 0;
|
||||
if (isa<SymbolicRegion>(R)) {
|
||||
return UnknownVal();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue