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