C++: fix missing bounds in exp range analysis

This commit is contained in:
Robert Marsh
2022-08-10 15:36:39 -04:00
parent e6aa2de977
commit 3bbd333336

View File

@@ -212,12 +212,6 @@ module SemanticExprConfig {
}
class Bound instanceof IRBound::Bound {
Bound() {
this instanceof IRBound::ZeroBound
or
this.(IRBound::ValueNumberBound).getValueNumber().getAnInstruction() instanceof SsaVariable
}
string toString() { result = super.toString() }
final Location getLocation() { result = super.getLocation() }