diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 22:06:27 +0200 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 22:06:27 +0200 |
commit | 7edfeccb35c1837dd86ff710d939f9500dcdc225 (patch) | |
tree | 90b8984ed7fd7f8d82304a6bd33c420dfc57114c /Python/makeopcodetargets.py | |
parent | d4bcf4143dfc78fbb388ed8b6171f28a049168ea (diff) | |
parent | 1af921ad1ae77dc7e1fa0684bdfa080a77f4769a (diff) | |
download | cpython-7edfeccb35c1837dd86ff710d939f9500dcdc225.tar.gz |
null merge
Diffstat (limited to 'Python/makeopcodetargets.py')
-rwxr-xr-x | Python/makeopcodetargets.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/makeopcodetargets.py b/Python/makeopcodetargets.py index 5d8e5a9a46..d9a085552f 100755 --- a/Python/makeopcodetargets.py +++ b/Python/makeopcodetargets.py @@ -23,9 +23,6 @@ def write_contents(f): opcode = find_module("opcode") targets = ['_unknown_opcode'] * 256 for opname, op in opcode.opmap.items(): - if opname == "STOP_CODE": - # XXX opcode not implemented - continue targets[op] = "TARGET_%s" % opname f.write("static void *opcode_targets[256] = {\n") f.write(",\n".join([" &&%s" % s for s in targets])) |