diff options
author | Roger Sayle <sayle@gcc.gnu.org> | 2004-10-09 19:27:55 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2004-10-09 19:27:55 +0000 |
commit | fc7ca5fd397370a7c606e631b399e43b22397ef9 (patch) | |
tree | 96aa90127b4a4b4bb4eebac21fbf671df91a35bb /gcc/doc/rtl.texi | |
parent | 35ed0a936a8269de89d1bc62ff63fb725a919b16 (diff) | |
download | gcc-fc7ca5fd397370a7c606e631b399e43b22397ef9.zip gcc-fc7ca5fd397370a7c606e631b399e43b22397ef9.tar.gz gcc-fc7ca5fd397370a7c606e631b399e43b22397ef9.tar.bz2 |
[multiple changes]
2004-10-09 Roger Sayle <roger@eyesopen.com>
PR rtl-optimization/17853
* simplify-rtx.c (simplify_relational_operation): Correct comment.
Reorganize handling of comparison operations with floating point
results (always return 0.0 even without FLOAT_STORE_FLAG_VALUE).
Likewise, introduce support for comparison operations with vector
result types, introducing a new VECTOR_STORE_FLAG_VALUE target macro.
* doc/rtl.texi: Document new VECTOR_STORE_FLAG_VALUE target macro.
* doc/tm.texi: Likewise.
2004-10-09 Stuart Hastings <stuart@apple.com>
Roger Sayle <roger@eyesopen.com>
PR rtl-optimization/17853
* gcc.dg/i386-mmx-5.c: New testcase.
From-SVN: r88826
Diffstat (limited to 'gcc/doc/rtl.texi')
-rw-r--r-- | gcc/doc/rtl.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi index 113dc147..3a72c16 100644 --- a/gcc/doc/rtl.texi +++ b/gcc/doc/rtl.texi @@ -2028,10 +2028,13 @@ Comparison operators test a relation on two operands and are considered to represent a machine-dependent nonzero value described by, but not necessarily equal to, @code{STORE_FLAG_VALUE} (@pxref{Misc}) if the relation holds, or zero if it does not, for comparison operators -whose results have a `MODE_INT' mode, and +whose results have a `MODE_INT' mode, @code{FLOAT_STORE_FLAG_VALUE} (@pxref{Misc}) if the relation holds, or zero if it does not, for comparison operators that return floating-point -values. The mode of the comparison operation is independent of the mode +values, and a vector of either @code{VECTOR_STORE_FLAG_VALUE} (@pxref{Misc}) +if the relation holds, or of zeros if it does not, for comparison operators +that return vector results. +The mode of the comparison operation is independent of the mode of the data being compared. If the comparison operation is being tested (e.g., the first operand of an @code{if_then_else}), the mode must be @code{VOIDmode}. |