diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-12-04 16:19:15 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-12-07 11:10:53 +0100 |
| commit | 5199091c6f87305b82ecd6f290db82b00439bd3b (patch) | |
| tree | 6b50cd47a07f1c0d93ad08f514f50fba28ebcd44 /test/analysis/depgraph.py | |
| parent | f35887530e7a49f67dc49f14dccd048ff6b99c8e (diff) | |
| download | miasm-5199091c6f87305b82ecd6f290db82b00439bd3b.tar.gz miasm-5199091c6f87305b82ecd6f290db82b00439bd3b.zip | |
IRA: ira parent class is now miasm2.ir.ir::ir
Diffstat (limited to 'test/analysis/depgraph.py')
| -rw-r--r-- | test/analysis/depgraph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/analysis/depgraph.py b/test/analysis/depgraph.py index 7120bd08..3f9b1a92 100644 --- a/test/analysis/depgraph.py +++ b/test/analysis/depgraph.py @@ -76,13 +76,13 @@ class Arch(object): return SP -class IRATest(ir, ira): +class IRATest(ira): """Fake IRA class for tests""" def __init__(self, symbol_pool=None): arch = Arch() - ir.__init__(self, arch, 32, symbol_pool) + super(IRATest, self).__init__(arch, 32, symbol_pool) self.IRDst = PC self.ret_reg = R |