X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeinsn_t.h;h=8897873042cdbe16b5b9146bfef2da444ca4d0a1;hb=026ec52ac914eee06e7afb961fb754735fb4ad9f;hp=8fd828c61bed7c2683555eb409bbcc9662bc82cf;hpb=d1de7107f847963fbce099597e6c42c2371b053c;p=libfirm diff --git a/ir/be/beinsn_t.h b/ir/be/beinsn_t.h index 8fd828c61..889787304 100644 --- a/ir/be/beinsn_t.h +++ b/ir/be/beinsn_t.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -38,8 +38,8 @@ typedef struct _be_insn_t be_insn_t; typedef struct _be_insn_env_t be_insn_env_t; struct _be_operand_t { - ir_node *irn; /**< firm node of the insn this operand blongs to */ - ir_node *carrier; /**< node representing the operand value (proj or the node itself for defs, the value itself for uses */ + ir_node *irn; /**< Firm node of the insn this operand belongs to */ + ir_node *carrier; /**< node representing the operand value (Proj or the node itself for defs, the value itself for uses */ be_operand_t *partner; /**< used in bechordal later... (TODO what does it do?) */ bitset_t *regs; /**< admissible register bitset */ int pos; /**< pos of the operand (0 to n are inputs, -1 to -n are outputs) */ @@ -62,7 +62,6 @@ struct _be_insn_t { struct _be_insn_env_t { struct obstack *obst; - const arch_env_t *aenv; const arch_register_class_t *cls; bitset_t *ignore_colors; };