added NoReg nodes per irg as cg attributes
[libfirm] / ir / be / ia32 / bearch_ia32.h
1 #ifndef _BEARCH_IA32_H_
2 #define _BEARCH_IA32_H_
3
4 #include "pset.h"
5 #include "../bearch.h"
6
7 /**
8  * Creates the unique per irg GP NoReg node.
9  */
10 ir_node *ia32_new_NoReg_gp(ia32_code_gen_t *cg);
11
12 /**
13  * Creates the unique per irg FP NoReg node.
14  */
15 ir_node *ia32_new_NoReg_fp(ia32_code_gen_t *cg);
16
17 extern const arch_isa_if_t ia32_isa_if;
18
19 #endif /* _BEARCH_IA32_H_ */