rename tarval to ir_tarval
[libfirm] / scripts / gen_ir_io.py
index cec272f..2deead7 100755 (executable)
@@ -45,8 +45,8 @@ env.filters['block']     = format_block
 env.filters['arguments'] = format_arguments
 
 def get_io_type(type, attrname, node):
-       if type == "tarval*":
-               importcmd = "tarval *%s = read_tv(env);" % attrname
+       if type == "ir_tarval*":
+               importcmd = "ir_tarval *%s = read_tv(env);" % attrname
                exportcmd = "write_tarval(env, %(val)s);";
        elif type == "ir_mode*":
                importcmd = "ir_mode *%s = read_mode(env);" % attrname
@@ -231,7 +231,7 @@ def main(argv):
        # these nodes don't work correctly yet for some reasons...
        niynodes = [ "ASM" ]
        # these have custom im-/export code
-       customcode = [ "Start", "End", "Anchor", "SymConst", "Block" ]
+       customcode = [ "Start", "End", "Anchor", "SymConst", "Block", "Deleted" ]
 
        real_nodes = []
        for node in ir_spec.nodes: