C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
C2427
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2427
 
     'identifier' : jump referencing label is out of range
 
     A branch to the specified label is farther than allowed.
 
     For example, if the following example causes this error:
 
                  jz label1
                  inc AX
                  ∙ ∙ ∙
          label1: inc CX
 
     then this error can be corrected by either removing excess code
     between the branch and the label or inverting the jump, as in:
 
                  jnz label2
                  jmp label1
          label2: inc AX
                  ∙ ∙ ∙
          label1: inc CX
                                    -♦-