isolated optimizations in cgana to run them separately.
[libfirm] / ir / ana / irbackedge_t.h
1 #ifndef _IRBACKEDGE_T_H_
2 #define _IRBACKEDGE_T_H_
3
4 # include "string.h"
5
6 static INLINE int * new_backedge_arr(struct obstack *obst, int size) {
7   int *res = NEW_ARR_D (int, obst, size);
8   memset(res, 0, sizeof(int) * size);
9   return res;
10 }
11
12
13 #endif /* _IRBACKEDGE_T_H_ */