diff options
Diffstat (limited to 'gcc/tree-data-ref.c')
-rw-r--r-- | gcc/tree-data-ref.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-data-ref.c b/gcc/tree-data-ref.c index ca07bdf..d30dbd1 100644 --- a/gcc/tree-data-ref.c +++ b/gcc/tree-data-ref.c @@ -3546,8 +3546,8 @@ lambda_matrix_right_hermite (lambda_matrix A, int m, int n, a = S[i-1][j]; b = S[i][j]; sigma = (a * b < 0) ? -1: 1; - a = abs (a); - b = abs (b); + a = abs_hwi (a); + b = abs_hwi (b); factor = sigma * (a / b); lambda_matrix_row_add (S, n, i, i-1, -factor); |