From: Matthias Braun Date: Tue, 18 Sep 2007 15:05:54 +0000 (+0000) Subject: remove (probably accidently comitted) write_node/read_node function declaration X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=482dff4bfc3c6dab25fa5877321a77f0d947f9cd;p=libfirm remove (probably accidently comitted) write_node/read_node function declaration [r15862] --- diff --git a/include/libfirm/irop.h b/include/libfirm/irop.h index 200b30122..499b689d5 100644 --- a/include/libfirm/irop.h +++ b/include/libfirm/irop.h @@ -328,16 +328,6 @@ typedef enum { */ typedef int (*dump_node_func)(ir_node *self, FILE *F, dump_reason_t reason); -/** - * Export a node to an archive. - */ -typedef void (*ar_export_func)(ir_node *self, FILE *F); - -/** - * Read a node back from an archive. - */ -typedef void (*ar_import_func)(ir_node *self, FILE *F); - /** * io_op Operations. */ @@ -354,8 +344,6 @@ typedef struct { verify_node_func verify_node; /**< Verify the node. */ verify_proj_node_func verify_proj_node; /**< Verify the Proj node. */ dump_node_func dump_node; /**< Dump a node. */ - ar_export_func write_node; /**< Export a node into an archive. */ - ar_import_func read_node; /**< Import a node from an archive. */ op_func generic; /**< A generic function pointer. */ } ir_op_ops;