added Id tag
[libfirm] / ir / ir / irop_t.h
1
2 /* $Id$ */
3
4 # ifndef _IROP_T_H_
5 # define _IROP_T_H_
6
7 # include "irop.h"
8
9 struct ir_op {
10   opcode code;
11   ident *name;
12   size_t attr_size;
13   int labeled;
14 };
15
16 /* create a new ir operation */
17 ir_op * new_ir_op (opcode code, ident *name, size_t attr_size, int labeled);
18
19 /* initialize the irop module */
20 void init_op (void);
21
22 #endif