summaryrefslogtreecommitdiff
path: root/Python/makeopcodetargets.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-31 22:06:27 +0200
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-31 22:06:27 +0200
commit7edfeccb35c1837dd86ff710d939f9500dcdc225 (patch)
tree90b8984ed7fd7f8d82304a6bd33c420dfc57114c /Python/makeopcodetargets.py
parentd4bcf4143dfc78fbb388ed8b6171f28a049168ea (diff)
parent1af921ad1ae77dc7e1fa0684bdfa080a77f4769a (diff)
downloadcpython-7edfeccb35c1837dd86ff710d939f9500dcdc225.tar.gz
null merge
Diffstat (limited to 'Python/makeopcodetargets.py')
-rwxr-xr-xPython/makeopcodetargets.py3
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]))