Check for case sensitivity in register names

This commit is contained in:
caheckman 2021-05-24 18:49:03 -04:00
parent fca4fd4844
commit faf2909910
14 changed files with 1607 additions and 808 deletions

View file

@ -380,7 +380,7 @@ public:
struct TraverseNode {
const Varnode *vn; ///< Varnode at the point of traversal
uint4 flags; ///< Flags associated with the node
TraverseNode(const Varnode *v,uint4 f) { vn = v; flags = f; }
TraverseNode(const Varnode *v,uint4 f) { vn = v; flags = f; } ///< Constructor
};
bool contiguous_test(Varnode *vn1,Varnode *vn2); ///< Test if Varnodes are pieces of a whole