Skip to content

Commit f32a4d1

Browse files
committed
Bugfix: fix Irep type naming
Previous merge lead to names like Make_Irep_Irep_Code
1 parent 5fa19e4 commit f32a4d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

irep_utils/src/irep_specs_to_ada.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def get_constant_assignments(schema):
185185

186186
for (schema_name, schema) in gj.schemata.iteritems():
187187
schema_name = "Irep_" + to_ada_identifier(schema_name)
188-
subp_name = "Make_Irep_%s" % schema_name
188+
subp_name = "Make_%s" % schema_name
189189

190190
outspec.write("\n")
191191
outspec.write(indent + ("type %s is new Irep;\n" % schema_name))

0 commit comments

Comments
 (0)