ILE C/C++ Compiler Reference

PFROPT

Specifies various options available to boost performance. You can specify them in any order, separated by one or more blanks. When an option is specified more than once, or when two options conflict, the last option specified is used.

|--+---------------------------------------------+--------------|
   |          .-*SETFPCA---.  .-*NOSTRDONLY-.    |
   '-PFROPT(--+------------+--+-------------+--)-'
              '-*NOSETFPCA-'  '-*STRDONLY---'
 
 

*SETFPCA
Default setting. Causes the compiler to set the floating-point computational attributes to achieve the ANSI semantics for floating-point computations.
*NOSETFPCA
No computational attributes will be set. This option is used when the object being created does not have any floating-point computations in it.
*NOSTRDONLY
Specifies that the compiler must place strings into writable memory. This is the default.
*STRDONLY
Specifies that the compiler may place strings into read-only memory.


[ Top of Page | Previous Page | Next Page | Table of Contents ]