From: Matthew Fernandez Date: Thu, 29 Sep 2022 04:32:32 +0000 (-0700) Subject: sparse SparseMatrix_init: remove dead stores to 'property' X-Git-Tag: 6.0.2~17^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b06923b99588da096061ab3a86139df6292c10d;p=graphviz sparse SparseMatrix_init: remove dead stores to 'property' `property` is cleared immediately before these lines. --- diff --git a/lib/sparse/SparseMatrix.c b/lib/sparse/SparseMatrix.c index bb7b72ce3..f4efd6a0f 100644 --- a/lib/sparse/SparseMatrix.c +++ b/lib/sparse/SparseMatrix.c @@ -310,10 +310,6 @@ static SparseMatrix SparseMatrix_init(int m, int n, int type, size_t sz, int for A->a = NULL; A->format = format; A->property = 0; - clear_flag(A->property, MATRIX_PATTERN_SYMMETRIC); - clear_flag(A->property, MATRIX_SYMMETRIC); - clear_flag(A->property, MATRIX_SKEW); - clear_flag(A->property, MATRIX_HERMITIAN); return A; }