value set analysis

This commit is contained in:
caheckman 2019-05-24 13:07:11 -04:00
parent 25894ff9ae
commit e96f39a98f
10 changed files with 1853 additions and 460 deletions

View file

@ -308,10 +308,10 @@ uintb AddrSpace::read(const string &s,int4 &size) const
offset = addressToByte(offset,wordsize);
enddata = (const char *) tmpdata;
if (enddata - s.c_str() == s.size()) { // If no size or offset override
size = getAddrSize(); // Return "natural" size
size = manage->getDefaultSize(); // Return "natural" size
return offset;
}
size = getAddrSize();
size = manage->getDefaultSize();
}
if (append != string::npos) {
enddata = s.c_str()+append;