diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-08-22 06:45:14 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-08-22 06:45:14 +0000 |
commit | beb235f8964321e02e492c9b6856a1ca56f2e027 (patch) | |
tree | b240bf213337fa404942e0e2bdbb6534d89eb5e0 /gcc/convert.c | |
parent | 2b72593e40e7c04cf3fe7cdb35878c307825b3a9 (diff) | |
download | gcc-beb235f8964321e02e492c9b6856a1ca56f2e027.zip gcc-beb235f8964321e02e492c9b6856a1ca56f2e027.tar.gz gcc-beb235f8964321e02e492c9b6856a1ca56f2e027.tar.bz2 |
c-decl.c: Fix comment formatting.
* c-decl.c: Fix comment formatting.
* cfgrtl.c: Likewise.
* combine.c: Likewise.
* convert.c: Likewise.
* dominance.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* expmed.c: Likewise.
* fold-const.c: Likewise.
* gcov.c: Likewise.
* genattrtab.c: Likewise.
* ggc-common.c: Likewise.
* mips-tfile.c: Likewise.
* regmove.c: Likewise.
From-SVN: r70677
Diffstat (limited to 'gcc/convert.c')
-rw-r--r-- | gcc/convert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/convert.c b/gcc/convert.c index 0d3a46c..fe3f3ec 100644 --- a/gcc/convert.c +++ b/gcc/convert.c @@ -203,7 +203,7 @@ convert_to_real (tree type, tree expr) if (itype != type && FLOAT_TYPE_P (type)) switch (TREE_CODE (expr)) { - /* convert (float)-x into -(float)x. This is always safe. */ + /* Convert (float)-x into -(float)x. This is always safe. */ case ABS_EXPR: case NEGATE_EXPR: if (TYPE_PRECISION (type) < TYPE_PRECISION (TREE_TYPE (expr))) @@ -211,7 +211,7 @@ convert_to_real (tree type, tree expr) fold (convert_to_real (type, TREE_OPERAND (expr, 0)))); break; - /* convert (outertype)((innertype0)a+(innertype1)b) + /* Convert (outertype)((innertype0)a+(innertype1)b) into ((newtype)a+(newtype)b) where newtype is the widest mode from all of these. */ case PLUS_EXPR: |