mirror of
https://github.com/catseye/SixtyPical.git
synced 2025-04-07 23:37:23 +00:00
called_routines are not stored in context at all.
This commit is contained in:
parent
1b5f4c0c4b
commit
4b518508d5
@ -35,7 +35,6 @@ class AnalysisContext(object):
|
||||
self._terminated = False
|
||||
self._gotos_encountered = set()
|
||||
self._pointer_assoc = dict()
|
||||
self.called_routines = set()
|
||||
|
||||
for ref in inputs:
|
||||
if self.is_constant(ref):
|
||||
@ -80,7 +79,6 @@ class AnalysisContext(object):
|
||||
c._writeable = set(self._writeable)
|
||||
c._pointer_assoc = dict(self._pointer_assoc)
|
||||
c._gotos_encountered = set(self._gotos_encountered)
|
||||
c.called_routines = set(self.called_routines)
|
||||
return c
|
||||
|
||||
def update_from(self, other):
|
||||
@ -96,7 +94,6 @@ class AnalysisContext(object):
|
||||
self._writeable = set(other._writeable)
|
||||
self._terminated = other._terminated
|
||||
self._pointer_assoc = dict(other._pointer_assoc)
|
||||
self.called_routines = set(other.called_routines)
|
||||
|
||||
def each_meaningful(self):
|
||||
for ref in self._range.keys():
|
||||
|
Loading…
x
Reference in New Issue
Block a user