aboutsummaryrefslogtreecommitdiff
path: root/gcc/simplify-rtx.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-04-30 20:48:55 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-04-30 20:48:55 +0000
commit1eeeb6a437b35a0a48b7758d33e2d33164ca52db (patch)
treea0cc3b83651f56f07e65c72d081ac3f43fda4dfd /gcc/simplify-rtx.c
parent888d5eaa62fd5a9e9c62cff6e94a2e9e79434c1e (diff)
downloadgcc-1eeeb6a437b35a0a48b7758d33e2d33164ca52db.zip
gcc-1eeeb6a437b35a0a48b7758d33e2d33164ca52db.tar.gz
gcc-1eeeb6a437b35a0a48b7758d33e2d33164ca52db.tar.bz2
cpplex.c: Fix comment formatting.
* cpplex.c: Fix comment formatting. * function.c: Likewise. * integrate.c: Likewise. * regrename.c: Likewise. * sibcall.c: Likewise. * simplify-rtx.c: Likewise. * tree-inline.c: Likewise. From-SVN: r52972
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r--gcc/simplify-rtx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c
index 3bc2824..8441ea9 100644
--- a/gcc/simplify-rtx.c
+++ b/gcc/simplify-rtx.c
@@ -1904,7 +1904,7 @@ simplify_relational_operation (code, mode, op0, op1)
REAL_VALUE_FROM_CONST_DOUBLE (d0, trueop0);
REAL_VALUE_FROM_CONST_DOUBLE (d1, trueop1);
- /* Comparisons are unordered iff at least one of the values is NaN. */
+ /* Comparisons are unordered iff at least one of the values is NaN. */
if (REAL_VALUE_ISNAN (d0) || REAL_VALUE_ISNAN (d1))
switch (code)
{