A P P E N D I X  A

C Compiler Options

This chapter describes the C compiler options. Take note that the C compiler recognizes by default some of the constructs of the 1999 ISO/IEC C standard. Specifically, the supported features are detailed in Supported Features of C99. Use the -xc99=%none command if you want to limit the compiler to the 1990 ISO/IEC C standard.

If you are porting a K&R C program to ISO C, make special note of the section on compatibility flags, Section A.3.59, -X[c|a|t|s]. Using them makes the transition to ISO C easier. Also refer to the discussion on the transition in Chapter 7.


A.1 Option Syntax

The syntax of the cc command is:

% cc [options] filenames [libraries]...

where:

The C compiler accepts a list of C source files and object files contained in the list of files specified by filenames. The resulting executable code is placed in a.out, unless the -o option is used. In this case, the code is placed in the file named by the -o option.

Use the C compiler to compile and link any combination of the following:

After linking, the C compiler places the linked files, now in executable code, into a file named a.out, or into the file specified by the -o option.

See option -YP, dir to change the default directories used for finding libraries. dir is a colon-separated path list. The default library search order for cc is:

/opt/SUNWspro/prod/lib

/usr/ccs/lib

/usr/lib

cc uses getopt to parse command-line options. Options are treated as a single letter or a single letter followed by an argument. See getopt(3c).


A.2 Options Summary

In this section, the compiler options are grouped by function to provide an easy reference. The details are in the sections of the following pages. The following table summarizes the cc compiler options by functionality. Some flags serve more than one purpose and appear more than once.

TABLE A-1 Compiler Options Grouped by Functionality

Licensing

Option Flag

 

Returns information about the licensing system.

-xlicinfo

Optimization and Performance

Option Flag

 

Selects the optimum combination of compilation options for speed of executable code.

-fast

 

Prepares the object code to collect data for profiling

-p

 

Optimizes for the 80386 processor.

-x386

 

Optimizes for the 80486 processor.

-x486

 

Enables the compiler to perform type-based alias analysis and optimizations.

-xalias_level

 

Improve the optimization of code that calls standard library functions.

-xbuiltin

 

Enables optimization and inlining across source files.

-xcrossfile

 

Analyzes loops for inter-iteration data dependencies and does loop restructuring.

-xdepend

 

Enables reordering of data and functions by the linker.

-xF

 

Enables compiler support for hardware counter-based profiling.

-xhwcprof

 

Tries to inline only those functions specified.

-xinline

 

Performs whole-program optimizations by invoking an interprocedural analysis component.

-xipo

 

Sets how many processes the compiler creates.

-xjobs

 

Inlines some library routines for faster execution.

-xlibmil

 

Links in the Sun-supplied performance libraries.

-xlic_lib=sunperf

 

Performs link-time optimizations on relocatable object files.

-xlinkopt

 

This command limits the level of pragma opt to the level specified.

-xmaxopt

 

Does not inline math library routines.

-xnolibmil

 

Optimizes the object code.

-x0

 

Sets the preferred page size for the stack and the heap.

-xpagesize

 

Sets the preferred page size for the stack.

-xpagesize_stack

 

Sets the preferred page size for the heap.

-xpagesize_heap

 

Reduces compile time for applications whose source files share a common set of include files.

-xpch

 

Can be used in conjunction with -xpch to specify the last include file of the viable prefix.

-xpchstop

 

Optimizes for the Pentiumtrademark processor.

-xpentium

 

Enable prefetch instructions.

-xprefetch

 

Control the aggressiveness of automatic insertion of prefetch instructions as set by -xprefetch=auto

-xprefetch_level

 

Collects data for a profile or uses a profile to optimize.

-xprofile

 

Improves compilation time of -xprofile=use phase by reusing compilation data saved from the -xprofile=collect phase

-xprofile_ircache

 

Support for multiple programs or shared libraries in a single profile directory.

-xprofile_pathmap

 

Treats pointer-valued function parameters as restricted pointers.

-xrestrict

 

Allows the compiler to assume no memory-based traps occur.

-xsafe

 

Does no optimizations or parallelization of loops that increase code size.

-xspace

 

Suggests to the optimizer to unroll loops n times.

-xunroll

Data Alignment

Option Flag

 

Produce an integer constant by placing the characters of a multi-character character-constant in the specified byte order.

-xchar_byte_order

 

Analyzes loops for inter-iteration data dependencies and does loop restructuring.

-xdepend

 

Specify maximum assumed memory alignment and behavior of misaligned data accesses.

-xmemalign

 

Supports the OpenMP interface for explicit parallelization including a set of source code directives, run-time library routines, and environment variables

-xopenmp

Numerics and Floating-Point

Option Flag

 

Causes nonstandard initialization of floating-point arithmetic hardware.

-fnonstd

 

Turns on the SPARC nonstandard floating-point mode.

-fns

 

Initializes the rounding-precision mode bits in the Floating-point Control Word

-fprecision

 

Sets the IEEE 754 rounding mode that is established at runtime during the program initialization.

-fround

 

Allows the optimizer to make simplifying assumptions concerning floating-point arithmetic.

-fsimple

 

Causes the compiler to evaluate float expressions as single precision rather than double precision.

-fsingle

 

Causes the compiler to convert the value of a floating-point expression or function to the type on the left-hand side of an assignment

-fstore

 

Sets the IEEE 754 trapping mode in effect at startup.

-ftrap

 

Does not convert the value of a floating-point expression or function to the type on the left-hand side of an assignment

-nofstore

 

Analyzes loops for inter-iteration data dependencies and does loop restructuring.

-xdepend

 

Forces IEEE 754 style return values for math routines in exceptional cases.

-xlibmieee

 

Supports the OpenMP interface for explicit parallelization including a set of source code directives, run-time library routines, and environment variables

-xopenmp

 

Represents unsuffixed floating-point constants as single precision

-xsfpconst

 

Enable automatic generation of calls to the vector library functions.

-xvector

Parallelization

Option Flag

 

Macro option that expands to -D_REENTRANT -lthread.

-mt

 

Turns on automatic parallelization for multiple processors.

-xautopar

 

Adds a runtime check for stack overflow.

-xcheck

 

Analyzes loops for inter-iteration data dependencies and does loop restructuring.

-xdepend

 

Generates parallelized code based on specification of #pragma MP directives.

-xexplicitpar

 

Shows which loops are parallelized and which are not.

-xloopinfo

 

Supports the OpenMP interface for explicit parallelization including a set of source code directives, run-time library routines, and environment variables

-xopenmp

 

Parallelizes loops both automatically by the compiler and explicitly specified by the programmer.

-xparallel

 

Turns on reduction recognition during automatic parallelization.

-xreduction

 

Treats pointer-valued function parameters as restricted pointers.

-xrestrict

 

Warns about loops that have #pragma MP directives specified but may not be properly specified for parallelization.

-xvpara

 

 

-xthreadvar

 

Creates the program database for lock_lint, but does not generate executable code.

-Zll

Source Code

Option Flag

 

Associates name as a predicate with the specified tokens as if by a #assert preprocessing directive.

-A

 

Prevents the preprocessor from removing comments, except those on the preprocessing directive lines.

-C

 

Associates name with the specified tokens as if by a #define preprocessing directive.

-D

 

Runs the source file through the preprocessor only and sends the output to stdout.

-E

 

Reports K&R-style function definitions and declarations.

-fd

 

Prints to standard error, one per line, the path name of each file included during the current compilation.

-H

 

Adds directories to the list that is searched for #include files with relative file names.

-I

 

Runs the source file through the C preprocessor only.

-P

 

Removes any initial definition of the preprocessor symbol name.

-U

 

The -X options specify varying degrees of compliance to the ISO C standard.

-X

 

Accepts the C++-style comments.

-xCC

 

Controls compiler recognition of supported C99 features.

-xc99

 

Helps with migration from systems where char is defined as unsigned.

-xchar

 

Allows the C compiler to accept source code written in locales that do not conform to the ISO C source character code requirements

-xcsi

 

Runs only the preprocessor on the named C programs, requesting that it generate makefile dependencies and send the result to the standard output

-xM

 

Collects dependencies like -xM, but excludes /usr/include files.

-xM1

 

Prints prototypes for all K&R C functions defined in this module

-xP

 

Prepares the object code to collect data for profiling with gprof(1).

-xpg

 

Generates extra symbol table information for the Source Browser.

-xsb

 

Creates the database for the Source Browser.

-xsbfast

 

Determines recognition of trigraph sequences.

-xtrigraphs

 

Enables recognition of string literals composed of sixteen-bit characters.

-xustr

Compiled Code

Option Flag

 

Directs the compiler to suppress linking with ld(1) and to produce a .o file for each source file

-c

 

Names the output file

-o

 

Directs the compiler to produce an assembly source file but not to assemble the program.

-S

Compilation Mode

Option Flag

 

Turns on verbose mode, which shows how command options expand and shows each component as it is invoked.

-#

 

Shows each component as it would be invoked, but does not actually execute it. Also shows how command options expand.

-###

 

Retains temporary files created during compilation instead of deleting them automatically.

-keeptmp

 

Directs cc to print the name and version ID of each component as the compiler executes.

-V

 

Passes arguments to C compilation-system components.

-W

 

Preserves the sign of a char

-xchar

 

Displays on-line help information.

-xhelp

 

Sets how many processes the compiler creates.

-xjobs

 

Reduces compile time for applications whose source files share a common set of include files.

-xpch

 

Can be used in conjunction with -xpch to specify the last include file of the viable prefix.

-xpchstop

 

Sets the directory for temporary files used by cc to dir.

-xtemp

 

Reports the time and resources used by each compilation component.

-xtime

 

Specifies a new directory for the location of a C compilation-system component.

-Y

 

Changes the default directory searched for components.

-YA

 

Changes the default directory searched for include files.

-YI

 

Changes the default directory for finding library files.

-YP

 

Changes the default directory for startup object files.

-YS

Diagnostics

Option Flag

 

Prefix error messages with string "error:" for ready distinction from warning messages.

-errfmt

 

Suppresses compiler warning messages.

-erroff

 

Control how much detail is in the error message produced by the compiler when it discovers a type mismatch.

-errshort

 

Displays the message tag for each warning message.

-errtags

 

If the indicated warning message is issued, cc exits with a failure status.

-errwarn

 

Directs the compiler to perform stricter semantic checks and to enable other lint-like checks.

-v

 

Suppresses compiler warning messages.

-w

 

Performs only syntax and semantic checking on the source file, but does not produce any object or executable code.

-xe

 

`Issues warnings for the differences between K&R C and Sun ISO C.

-xtransition

 

Warns about loops that have #pragma MP directives specified but may not be properly specified for parallelization.

-xvpara

Debugging

Option Flag

 

Adds a runtime check for stack overflow.

-xcheck

 

Produces additional symbol table information for the debugger.

-g

 

Removes all symbolic debugging information from the output object file.

-s

 

Generates debugging information in dwarf format instead of stabs format

-xdebugformat

 

Sets the preferred page size for the stack and the heap.

-xpagesize

 

Sets the preferred page size for the stack.

-xpagesize_stack

 

Sets the preferred page size for the heap.

-xpagesize_heap

 

Disables Auto-Read of object files for dbx.

-xs

 

Enables compiler recognition of the assembly-language templates defined in the VIS[tm] instruction set

-xvis

Linking and Libraries

Option Flag

 

Specifies whether bindings of libraries for linking are static or dynamic.

-B

 

Specifies dynamic or static linking in the link editor.

-d

 

Passes the option to the link editor to produce a shared object rather than a dynamically linked executable.

-G

 

Assigns a name to a shared dynamic library as a way to have different versions of a library.

-h

 

Passes the option to the linker to ignore any LD_LIBRARY_PATH setting.

-i

 

Adds directories to the list that the linker searches for libraries.

-L

 

Links with object library libname.so, or libname.a.

-l

 

Removes duplicate strings from the .comment section of the object file.

-mc

 

Removes all strings from the .comment section. Can also insert a string in that section of the object file.

-mr

 

Emits or does not emit identification information to the output file.

-Q

 

Passes a colon-separated list of directories used to specify library search directories to the runtime linker.

-R

 

Merges data segments into text segments.

-xMerge

 

Specify code address space.

-xcode

 

Inserts string literals into the read-only data section of the text segment instead of the default data segment.

-xstrconst

 

Turns off the incremental linker and forces the use of ld.

-xildoff

 

Turns on the incremental linker and forces the use of ild in incremental mode.

-xildon

 

Controls the default scope of variable and function definitions to create faster and safer shared libraries.

-xldscope

 

Includes interface information inside object files and subsequent shared libraries so that the shared library can interface with code written in the Java[tm] programming language.

-xnativeconnect

 

Does not link any libraries by default

-xnolib

 

Does not inline math library routines.

-xnolibmil

Target Platform

Option Flag

 

Specify instruction set architecture.

-xarch

 

Defines the cache properties for use by the optimizer.

-xcache

 

Specifies values for -xarch, -xchip, and -xcache.

-xcg

 

Specifies the target processor for use by the optimizer.

-xchip

 

Specifies the usage of registers for the generated code.

-xregs

 

Specifies the target system for instruction set and optimization.

-xtarget



A.3 The cc Options

This section describes the cc options, arranged alphabetically. These descriptions are also available in the man page, cc(1). Use the cc -flags option for a one-line summary of these descriptions.

Options noted as being unique to one or more platforms are accepted without error and ignored on all other platforms. For an explanation of the typographic notations used with the options and arguments, refer to Typographic Conventions.

A.3.1 -#

Turns on verbose mode, showing how command options expand. Shows each component as it is invoked.

A.3.2 -###

Shows each component as it would be invoked, but does not actually execute it. Also shows how command options would expand.

A.3.3 -Aname[(tokens)]

Associates name as a predicate with the specified tokens as if by a #assert preprocessing directive. Preassertions:

These preassertions are not valid in -Xc mode.

A.3.4 -B[static|dynamic]

Specifies whether bindings of libraries for linking are static or dynamic, indicating whether libraries are non-shared or shared, respectively.

-Bdynamic causes the link editor to look for files named libx.so and then for files named libx.a when given the -lx option.

-Bstatic causes the link editor to look only for files named libx.a. This option may be specified multiple times on the command line as a toggle. This option and its argument are passed to ld(1).



Note - Many system libraries, such as libc, are only available as dynamic libraries in the Solaris 64-bit compilation environment. Therefore, do not use -Bstatic as the last toggle on the command line.



A.3.5 -C

Prevents the C preprocessor from removing comments, except those on the preprocessing directive lines.

A.3.6 -c

Directs cc to suppress linking with ld(1) and to produce a .o file for each source file. You can explicitly name a single object file using the -o option. When the compiler produces object code for each .i or .c input file, it always creates an object (.o) file in the current working directory. If you suppress the linking step, you also suppress the removal of the object files.

A.3.7 -Dname[=tokens]

Associates name with the specified tokens as if by a #define preprocessing directive. If no =tokens is specified, the token 1 is supplied.

Predefinitions (not valid in -Xc mode):

The following predefinitions are valid in all modes.

The following is predefined in -Xa and -Xt modes only:

The compiler also predefines the object-like macro __PRAGMA_REDEFINE_EXTNAME, to indicate the pragma will be recognized.

A.3.8 -d[y|n]

-dy specifies dynamic linking, which is the default, in the link editor.

-dn specifies static linking in the link editor.

This option and its arguments are passed to ld(1).



Note - Many system libraries are only available as dynamic libraries in the Solaris 64-bit compilation environment. As a result, this option causes fatal errors if you use it in combination with -xarch=v9.



A.3.9 -dalign

-dalign is equivalent to -xmemalign=8s. See Section A.3.102, -xmemalign=ab.

A.3.10 -E

Runs the source file through the preprocessor only and sends the output to stdout. The preprocessor is built directly into the compiler, except in -Xs mode, where
/usr/ccs/lib/cpp is invoked. Includes the preprocessor line numbering information. See also the -P option.

A.3.11 -errfmt[=[no%]error]

Use this option if you want to prefix the string "error:" to the beginning of error messages so they are more easily distinguishable from warning messages. The prefix is also attached to warnings that are converted to errors by -errwarn.

TABLE A-2 The -errfmt Values

Value

Meaning

error

Add the prefix "error:" to all error messages.

no%error

Do not add the prefix "error:" to any error messages.


If you do not use this option, the compiler sets it to -errfmt=no%error. If you use specify -errfmt, but do not supply a value, the compiler sets it to -errfmt=error.

A.3.12 -erroff[=t]

This command suppresses C compiler warning messages and has no effect on error messages.

t is a comma-separated list that consists of one or more of the following: tag, no%tag, %all, %none. Order is important; for example, %all,no%tag suppresses all warning messages except tag. The following table lists the -erroff values:

TABLE A-3 The -erroff Values

Value

Meaning

tag

Suppresses the warning message specified by this tag. You can display the tag for a message by using the -errtags=yes option.

no%tag

Enables the warning message specified by this tag

%all

Suppresses all warning messages

%none

Enables all warning messages (default)


The default is -erroff=%none. Specifying -erroff is equivalent to specifying -erroff=%all.

Only warning messages from the C compiler front-end that display a tag when the -errtags option is used can be suppressed with the -erroff option. You can achieve finer control over error message suppression. See Section 2.8.5, error_messages.

A.3.13 -errshort[=i]

Use this option to control how much detail is in the error message produced by the compiler when it discovers a type mismatch. This option is particularly useful when the compiler discovers a type mismatch that involves a large aggregate.

i can be one of the following:

TABLE A-4 The -errshort Values

Value

Meaning

short

Error messages are printed in short form with no expansion of types. Aggregate members are not expanded, neither are function argument and return types.

full

Error messages are printed in full verbose form showing the full expansion of the mismatched types.

tags

Error messages are printed with tag names for types which have tag names. If there is no tag name, the type is shown in expanded form.


If you do not use -errshort, the compiler sets the option to -errshort=full. If you specify -errshort, but do not provide a value, the compiler sets the option to -errshort=tags.

This option does not accumulate, it accepts the last value specified on the command line.

A.3.14 -errtags[=a]

Displays the message tag for each warning message of the C compiler front-end that can be suppressed with the -erroff option or made a fatal error with the -errwarn option. Messages from the C compiler driver and other components of the C compilation system do not have error tags, and cannot be suppressed with -erroff and made fatal with -errwarn.

a can be either yes or no. The default is -errtags=no. Specifying -errtags is equivalent to specifying -errtags=yes.

A.3.15 -errwarn[=t]

Use -errwarn to cause the C compiler to exit with a failure status for the given warning messages.

t is a comma-separated list that consists of one or more of the following: tag, no%tag, %all, %none. Order is important; for example %all,no%tag causes cc to exit with a fatal status if any warning except tag is issued.

The warning messages generated by the C compiler change from release to release as the compiler error checking improves and features are added. Code that compiles using -errwarn=%all without error may not compile without error in the next release of the compiler.

Only warning messages from the C compiler front-end that display a tag when the -errtags option is used can be specified with the -errwarn option to cause the C compiler to exit with a failure status.

The following table details the -errwarn values:

TABLE A-5 The -errwarn Values

Value

Meaning

tag

Cause cc to exit with a fatal status if the message specified by this tag is issued as a warning message. Has no effect if tag is not issued.

no%tag

Prevent cc from exiting with a fatal status if the message specified by tag is issued only as a warning message. Has no effect if the message specified by tag is not issued. Use this option to revert a warning message that was previously specified by this option with tag or %all from causing cc to exit with a fatal status when issued as a warning message.

%all

Cause cc to exit with a fatal status if any warning messages are issued. %all can be followed by no%tag to exempt specific warning messages from this behavior.

%none

Prevents any warning message from causing cc to exit with a fatal status should any warning message be issued.


The default is -errwarn=%none. If you specify -errwarn alone, it is equivalent to -errwarn=%all.

A.3.16 -fast

Selects a set of baseline options for optimizing benchmark applications. These optimizations may alter the behavior of programs from that defined by the ISO C and IEEE standards. Modules compiled with -fast must also be linked with -fast.

-fast is a macro option that can be effectively used as a starting point for tuning an executable for maximum runtime performance. -fast is a macro that can change from one release of the compiler to the next and expands to options that are target platform specific. We suggest that you use the -# option to examine the expansion of -fast, and incorporate the appropriate options of -fast into the ongoing process of tunning the executable.

The -fast option is unsuitable for programs intended to run on a different target than the compilation machine. In such cases, follow -fast with the appropriate -xtarget option. For example:

cc -fast -xtarget=ultra ...

For C modules that depend on exception handling specified by SUID, follow -fast by -xnolibmil:

% cc -fast -xnolibmil

With -xlibmil, exceptions cannot be noted by setting errno or calling matherr(3m).

The -fast option is unsuitable for programs that require strict conformance to the IEEE 754 Standard.

The following table lists the set of options selected by -fast across platforms.

TABLE A-6 The -fast Expansion Values

Option

SPARC

x86

-fns

X

X

-fsimple=2

X

X

-fsingle

X

X

-ftrap=%none

X

X

-nofstore

-

X

-xalias_level=basic

X

-

-xarch

X

X

-xbuiltin=%all

X

X

-xdepend

X

X

-xlibmil

X

X

-xmemalign=8s

X

-

-xO5

X

X

-xprefetch=auto,explicit

X

-




Note - Some optimizations make certain assumptions about program behavior. If the program does not conform to these assumptions, the application may crash or produce incorrect results. Please refer to the description of the individual options to determine if your program is suitable for compilation with -fast.



The optimizations performed by these options may alter the behavior of programs from that defined by the ISO C and IEEE standards. See the description of the specific option for details.

-fast acts like a macro expansion on the command line. Therefore, you can override the optimization level and code generation option aspects by following -fast with the desired optimization level or code generation option. Compiling with the -fast -xO4 pair is like compiling with the -xO2 -xO4 pair. The latter specification takes precedence.

In previous releases, the -fast macro option included -fnonstd; now it includes -fns instead.

-fast also defines the macro __MATHERR_ERRNO_DONTCARE. This macro causes math.h to assert performance-related pragmas such as the following for some math routines prototyped in <math.h>:

If your code relies on the return value of errno in exceptional cases as documented in the matherr(3M) man page, you must turn off the macro by issuing the -U__MATHERR_ERRNO_DONTCARE macro after the -fast option.

You can usually improve performance for most programs with this option.

Do not use this option for programs that depend on IEEE standard exception handling; you can get different numerical results, premature program termination, or unexpected SIGFPE signals.

See -# and -### for details of how you can see the expansion of macro options.

A.3.17 -fd

Reports K&R-style function definitions and declarations.

A.3.18 -flags

Prints a brief summary of each available compiler option.

A.3.19 -fnonstd

Causes nonstandard initialization of floating-point arithmetic hardware. In addition, the -fnonstd option causes hardware traps to be enabled for floating-point overflow, division by zero, and invalid operations exceptions. These are converted into SIGFPE signals; if the program has no SIGFPE handler, it terminates with a memory dump.

By default, IEEE 754 floating-point arithmetic is nonstop, and underflows are gradual. (See Section 2.4, Floating Point, Nonstandard Mode for a further explanation.)

(SPARC) Synonym for -fns -ftrap=common.

A.3.20 -fns[={no,yes}]

(SPARC) Turns on the SPARC nonstandard floating-point mode.

The default is -fns=no, the SPARC standard floating-point mode. -fns is the same as -fns=yes.

Optional use of =yes or =no provides a way of toggling the -fns flag following some other macro flag that includes -fns, such as -fast. This flag enables the nonstandard floating point mode when a program begins execution. By default, the non-standard floating point mode will not be enabled automatically.

On some SPARC systems, the nonstandard floating point mode disables "gradual underflow," causing tiny results to be flushed to zero rather than producing subnormal numbers. It also causes subnormal operands to be replaced silently by zero. On those SPARC systems that do not support gradual underflow and subnormal numbers in hardware, use of this option can significantly improve the performance of some programs.

When nonstandard mode is enabled, floating point arithmetic may produce results that do not conform to the requirements of the IEEE 754 standard. See the Numerical Computation Guide for more information.

This option is effective only on SPARC systems and only if used when compiling the main program. On x86 systems, the option is ignored.

A.3.21 -fprecision=p

(x86) -fprecision={single, double, extended}

Initializes the rounding-precision mode bits in the Floating-point Control Word to single (24 bits), double (53 bits), or extended (64 bits), respectively. The default floating-point rounding-precision mode is extended.

Note that on Intel, only the precision, not exponent, range is affected by the setting of floating-point rounding precision mode.

A.3.22 -fround=r

Sets the IEEE 754 rounding mode that is established at runtime during the program initialization.

r must be one of: nearest, tozero, negative, positive.

The default is -fround=nearest.

The meanings are the same as those for the ieee_flags subroutine.

When r is tozero, negative, or positive, this flag sets the rounding direction mode to round-to-zero, round-to-negative-infinity, or round-to-positive-infinity respectively when a program begins execution. When r is nearest or the -fround flag is not used, the rounding direction mode is not altered from its initial value (round-to-nearest by default).

This option is effective only if used when compiling the main program.

A.3.23 -fsimple[=n]

Allows the optimizer to make simplifying assumptions concerning floating-point arithmetic.

If n is present, it must be 0, 1, or 2. The defaults are:

-fsimple=0

Permits no simplifying assumptions. Preserve strict IEEE 754 conformance.

-fsimple=1

Allows conservative simplifications. The resulting code does not strictly conform to IEEE 754, but numeric results of most programs are unchanged.

With -fsimple=1, the optimizer can assume the following:

With -fsimple=1, the optimizer is not allowed to optimize completely without regard to roundoff or exceptions. In particular, a floating-point computation cannot be replaced by one that produces different results with rounding modes held constant at runtime. The -fast macroflag includes -fsimple=1.

-fsimple=2

Permits aggressive floating point optimizations that may cause many programs to produce different numeric results due to changes in rounding. For example, -fsimple=2 permits the optimizer to replace all computations of x/y in a given loop with x*z, where x/y is guaranteed to be evaluated at least once in the loop, z=1/y, and the values of y and z are known to have constant values during execution of the loop.

Even with -fsimple=2, the optimizer is not permitted to introduce a floating point exception in a program that otherwise produces none.

A.3.24 -fsingle

(-Xt and -Xs modes only) Causes the compiler to evaluate float expressions as single precision rather than double precision. This option has no effect if the compiler is used in either -Xa or -Xc modes, as float expressions are already evaluated as single precision.

A.3.25 -fstore

(Intel) Causes the compiler to convert the value of a floating-point expression or function to the type on the left-hand side of an assignment, when that expression or function is assigned to a variable, or when the expression is cast to a shorter floating-point type, rather than leaving the value in a register. Due to rounding and truncation, the results may be different from those that are generated from the register value. This is the default mode.

To turn off this option, use the -nofstore option.

A.3.26 -ftrap=t

Sets the IEEE 754 trapping mode in effect at startup.

t is a comma-separated list that consists of one or more of the following: %all, %none, common, [no%]invalid, [no%]overflow, [no%]underflow, [no%</