remove symconst_type_tag
[libfirm] / ir / adt / gaussjordan.c
index 3318fec..7773238 100644 (file)
@@ -56,7 +56,7 @@ int firm_gaussjordansolve(double *A, double *vec, int nsize)
                x[i] = i;
 
        /* triangularize A */
-       /* ie A has zeros below it's diagonal */
+       /* ie A has zeros below its diagonal */
        for (col = 0; col < nsize - 1; ++col) {
                big = 0;
                /* find the largest left in LRH box */