File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -109,9 +109,6 @@ def inputs(self):
109
109
def outputs (self ):
110
110
return self ._opdinfo .outputs ()
111
111
112
- def constants (self ):
113
- return self ._opdinfo .constants ()
114
-
115
112
def syntax (self ):
116
113
return self ._opdinfo .syntax ().replace ("%opcode" , self ._name )
117
114
@@ -134,9 +131,6 @@ def __init__(self, opinfo):
134
131
self ._outputs = {}
135
132
for iname , itype in opinfo .get ("outputs" , {}).items ():
136
133
self ._outputs [iname ] = itype
137
- self ._constants = {}
138
- for iname , opsz in opinfo .get ("constants" , {}).items ():
139
- self ._constants [iname ] = opsz
140
134
141
135
def syntax (self ):
142
136
return self ._syntax
@@ -150,9 +144,6 @@ def inputs(self):
150
144
def outputs (self ):
151
145
return self ._outputs
152
146
153
- def constants (self ):
154
- return self ._constants
155
-
156
147
def copy (self ):
157
148
return copy .deepcopy (self )
158
149
You can’t perform that action at this time.
0 commit comments