summaryrefslogtreecommitdiff
path: root/isl_mat.c
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2010-01-23 12:50:26 +0100
committerSven Verdoolaege <skimo@kotnet.org>2010-06-19 19:25:23 +0200
commit875ce8303e77086ed15edcdc9070603e6cf674cf (patch)
tree3986a5204f3097a2547a73da9dec88537d5fca06 /isl_mat.c
parentf5d109c8ad56a2e59d0e81caf49eea19a9a897d5 (diff)
downloadisl-875ce8303e77086ed15edcdc9070603e6cf674cf.tar.gz
isl-875ce8303e77086ed15edcdc9070603e6cf674cf.tar.bz2
isl-875ce8303e77086ed15edcdc9070603e6cf674cf.zip
add rudimentary error reporting mechanism
Diffstat (limited to 'isl_mat.c')
-rw-r--r--isl_mat.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/isl_mat.c b/isl_mat.c
index 38bee990..13332e6d 100644
--- a/isl_mat.c
+++ b/isl_mat.c
@@ -81,7 +81,6 @@ struct isl_mat *isl_mat_extend(struct isl_mat *mat,
if (!mat)
goto error;
- assert(mat->ref == 1);
old = mat->block.data;
mat->block = isl_blk_extend(mat->ctx, mat->block, n_row * mat->max_col);
if (isl_blk_is_error(mat->block))