- implemented back propagation for RII reductions
[libfirm] / matrix_t.h
index 38ee3b8..bf4cfc4 100644 (file)
@@ -1,12 +1,13 @@
 #ifndef KAPS_MATRIX_T_H
 #define KAPS_MATRIX_T_H
 
-struct matrix;
-typedef struct matrix matrix;
+#include "pbqp_t.h"
 
-struct matrix {
-       int rows;
-       int cols;
+typedef struct pbqp_matrix pbqp_matrix;
+
+struct pbqp_matrix {
+       unsigned rows;
+       unsigned cols;
        num entries[];
 };