Forcheck verifies the consistent usage of include files
1 c 2 c FORCHECK 3 c Common block inconsistently included 4 5 PROGRAM ComUse 6 INCLUDE 'gentab.inc' 6.1 INTEGER NumTab 6.2 COMMON/GenTab/NumTab 7 NumTab = 0 8 CALL Increase 9 END 11 SUBROUTINE Increase 12 INTEGER NumTab 13 COMMON/GenTab/NumTab 14 NumTab = NumTab + 1 15 END |
global program analysis: (file: include.for, line: 13) /GENTAB/, declared in INCREASE **[233 I] common block inconsistently included from include file(s) |
previous page | top page |
Forcheck
Contact |