diff options
Diffstat (limited to 'gcc/lambda-trans.c')
-rw-r--r-- | gcc/lambda-trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lambda-trans.c b/gcc/lambda-trans.c index aff2f1d..fbd8304 100644 --- a/gcc/lambda-trans.c +++ b/gcc/lambda-trans.c @@ -35,7 +35,7 @@ lambda_trans_matrix_new (int colsize, int rowsize) { lambda_trans_matrix ret; - ret = ggc_alloc (sizeof (*ret)); + ret = GGC_NEW (struct lambda_trans_matrix_s); LTM_MATRIX (ret) = lambda_matrix_new (rowsize, colsize); LTM_ROWSIZE (ret) = rowsize; LTM_COLSIZE (ret) = colsize; |