Ftnchek
From CFD-Wiki
(Difference between revisions)
(Reworked text that had been copied from the website) |
|||
Line 1: | Line 1: | ||
- | ftnchek is a static analyzer for Fortran 77 programs. It | + | ftnchek is a static analyzer for Fortran 77 programs. It intended to detect defects in Fortran code that are legal but may cause problems. As such, it is not a debugger, but will find issues like |
+ | * unused variables | ||
+ | * uninitialized variables | ||
+ | The program will not catch all syntax errors, so it should be used in conjunction with a compiler. | ||
==External Link== | ==External Link== | ||
*[http://www.dsm.fordham.edu/~ftnchek/ Ftnchek homepage] | *[http://www.dsm.fordham.edu/~ftnchek/ Ftnchek homepage] |
Latest revision as of 19:06, 7 June 2007
ftnchek is a static analyzer for Fortran 77 programs. It intended to detect defects in Fortran code that are legal but may cause problems. As such, it is not a debugger, but will find issues like
- unused variables
- uninitialized variables
The program will not catch all syntax errors, so it should be used in conjunction with a compiler.