Commit 60ba917e by Eric Botcazou Committed by Eric Botcazou

rtl.texi (Comparison operations): Update to record the allowed comparison modes.

	* doc/rtl.texi (Comparison operations): Update to
	record the allowed comparison modes.

From-SVN: r65341
parent 2abe3e28
2003-04-07 Eric Botcazou <ebotcazou@libertysurf.fr>
* doc/rtl.texi (Comparison operations): Update to
record the allowed comparison modes.
2003-04-07 Aldy Hernandez <aldyh@redhat.com> 2003-04-07 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.c (rs6000_common_init_builtins): Rename all * config/rs6000/rs6000.c (rs6000_common_init_builtins): Rename all
......
...@@ -1883,14 +1883,14 @@ mode. ...@@ -1883,14 +1883,14 @@ mode.
Comparison operators test a relation on two operands and are considered Comparison operators test a relation on two operands and are considered
to represent a machine-dependent nonzero value described by, but not to represent a machine-dependent nonzero value described by, but not
necessarily equal to, @code{STORE_FLAG_VALUE} (@pxref{Misc}) necessarily equal to, @code{STORE_FLAG_VALUE} (@pxref{Misc})
if the relation holds, or zero if it does not. The mode of the if the relation holds, or zero if it does not, for comparison operators
comparison operation is independent of the mode of the data being whose results have a `MODE_INT' mode, and
compared. If the comparison operation is being tested (e.g., the first @code{FLOAT_STORE_FLAG_VALUE} (@pxref{Misc}) if the relation holds, or
operand of an @code{if_then_else}), the mode must be @code{VOIDmode}. zero if it does not, for comparison operators that return floating-point
If the comparison operation is producing data to be stored in some values. The mode of the comparison operation is independent of the mode
variable, the mode must be in class @code{MODE_INT}. All comparison of the data being compared. If the comparison operation is being tested
operations producing data must use the same mode, which is (e.g., the first operand of an @code{if_then_else}), the mode must be
machine-specific. @code{VOIDmode}.
@cindex condition codes @cindex condition codes
There are two ways that comparison operations may be used. The There are two ways that comparison operations may be used. The
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment