From c4e93e284baacb195089dd2f8f579db7b02a102a Mon Sep 17 00:00:00 2001 From: Andrew Haley Date: Fri, 19 Dec 2008 17:53:51 +0000 Subject: [PATCH] builtins.c, [...]: Fix comments. 2008-12-19 Andrew Haley * builtins.c, tree-ssa-loop-ivopts.c, fixed-value.c: Fix comments. From-SVN: r142839 --- gcc/ChangeLog | 5 +++++ gcc/builtins.c | 2 +- gcc/fixed-value.c | 4 ++-- gcc/tree-ssa-loop-ivopts.c | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 581efadd6bcf..9b9858538244 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-12-19 Andrew Haley + + * builtins.c, tree-ssa-loop-ivopts.c, fixed-value.c: + Fix comments. + 2008-12-19 Richard Earnshaw PR target/38548 diff --git a/gcc/builtins.c b/gcc/builtins.c index afb3b3fdb328..d64290d3a0ca 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -7682,7 +7682,7 @@ fold_builtin_sqrt (tree arg, tree type) tree tree_root; /* The inner root was either sqrt or cbrt. */ /* This was a conditional expression but it triggered a bug - in the Solaris 8 compiler. */ + in Sun C 5.5. */ REAL_VALUE_TYPE dconstroot; if (BUILTIN_SQRT_P (fcode)) dconstroot = dconsthalf; diff --git a/gcc/fixed-value.c b/gcc/fixed-value.c index d7f6413b29a6..2fe1b160c8ed 100644 --- a/gcc/fixed-value.c +++ b/gcc/fixed-value.c @@ -295,8 +295,8 @@ do_fixed_add (FIXED_VALUE_TYPE *f, const FIXED_VALUE_TYPE *a, double_int temp; int i_f_bits; - /* This was a conditional expression but it triggered a bug in the - Solaris 8 compiler. */ + /* This was a conditional expression but it triggered a bug in + Sun C 5.5. */ if (subtract_p) temp = double_int_neg (b->data); else diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c index 2d36becf5ecd..ca1ab98b85af 100644 --- a/gcc/tree-ssa-loop-ivopts.c +++ b/gcc/tree-ssa-loop-ivopts.c @@ -4360,8 +4360,8 @@ iv_ca_add_use (struct ivopts_data *data, struct iv_ca *ivs, static comp_cost iv_ca_cost (struct iv_ca *ivs) { - /* This was a conditional expression but it triggered a bug in the - Solaris 8 compiler. */ + /* This was a conditional expression but it triggered a bug in + Sun C 5.5. */ if (ivs->bad_uses) return infinite_cost; else