1
1

properly fix bug 819 - initialize the right variable to 0.

This commit was SVN r997.
Этот коммит содержится в:
Brian Barrett 2004-03-28 10:20:32 +00:00
родитель 61557f0156
Коммит acff369327
2 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -256,7 +256,7 @@ LAM_SIZEOF_FORTRAN_DBLPREC=0
LAM_SIZEOF_FORTRAN_COMPLEX=0
LAM_SIZEOF_FORTRAN_DBLCOMPLEX=0
LAM_ALIGNMENT_FORTRAN_INTEGER=0
LAM_ALIGNMENT_FORTRAN_INT=0
LAM_ALIGNMENT_FORTRAN_REAL=0
LAM_ALIGNMENT_FORTRAN_DBLPREC=0
LAM_ALIGNMENT_FORTRAN_COMPLEX=0

Просмотреть файл

@ -325,9 +325,6 @@ void laminfo::do_config(bool want_all)
"compiler:fortran:sizeof:double_complex",
LAM_SIZEOF_FORTRAN_REAL);
#if 0
// Added only for bug 819 -- once fortran support is fixed
// properly in configure, this #if 0 should be removed.
out("Fort integer align", "compiler:fortran:align:integer",
LAM_ALIGNMENT_FORTRAN_INT);
out("Fort real align", "compiler:fortran:align:real",
@ -339,7 +336,6 @@ void laminfo::do_config(bool want_all)
out("Fort dbl cplx align",
"compiler:fortran:align:double_complex",
LAM_ALIGNMENT_FORTRAN_REAL);
#endif
}
out("C profiling", "option:profiling:c", cprofiling);