Run-Time and Math Errors Help (runerr.hlp) (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.
M6111
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Math error M6111
 
     stack underflow
 
     A floating-point operation resulted in a stack underflow on the
     8087/287/387 coprocessor or the emulator.
 
     This error is often caused by a call to a long double function
     that does not return a value. For example, the following generates
     this error when compiled and run:
 
          long double ld() {};
 
          main ()
          {
            ld();
          }
 
     This error terminates the program with exit code 139.
                                    -♦-