/Nx Compiler Option (C++)

Syntax: Default:
/Nxname EH_CODE and EH_DATA

Use /Nx to specify the names of one code and one data section that contain information relating to C++ exception handling. This information is only used during the processing of a throw statement. Separating the sections from the default code and data segments improves the paging behavior of your program.

The code section is named name_CODE of class CODE. The data section is named name_DATA of class DATA.

Note: This option is valid for C++ files only.

By default, the sections are named EH_CODE and EH_DATA.



C++ Exception Handling Overview


Summary of Compiler Options
Language-Dependent Options