diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-02-16 16:40:19 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-02-16 16:40:19 +0100 |
| commit | 0fcd954e10351f914b37a96d498aec39feb30b24 (patch) | |
| tree | c1f68a979bfac603a3beccea678d4b8cfe3391dc /miasm2/core/cpu.py | |
| parent | f6ba0b1b608a060ef5040d9937f6c7014383da6c (diff) | |
| download | miasm-0fcd954e10351f914b37a96d498aec39feb30b24.tar.gz miasm-0fcd954e10351f914b37a96d498aec39feb30b24.zip | |
PyLint: Unreachable code
Diffstat (limited to 'miasm2/core/cpu.py')
| -rw-r--r-- | miasm2/core/cpu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/cpu.py b/miasm2/core/cpu.py index 85a6db75..ce6cf288 100644 --- a/miasm2/core/cpu.py +++ b/miasm2/core/cpu.py @@ -1564,7 +1564,7 @@ class cls_mn(object): if ((index, [xx[1].value for xx in to_decode]) in todo or (index, [xx[1].value for xx in to_decode]) in done): raise NotImplementedError('not fully functional') - continue + for p, f in to_decode: fnew = f.clone() o.append((p, fnew)) |