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.
C4703
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler warning (level 1) C4703
 
     'function' : function too large for global optimizations
 
     The named function was too large to fit in memory and be compiled
     with the selected optimization option. The compiler did not
     perform any global optimizations (/Oe, /Og, or /Ol). Other /O<x>
     optimization options, such as /Oa and /Oi, are still performed.
 
     One of the following may remove this warning:
 
        ■ Divide the function into two or more smaller functions.
 
        ■ Recompile with fewer optimizations.
                                    -♦-