diff options
author | Oleg Endo <olegendo@gcc.gnu.org> | 2013-02-03 20:06:01 +0000 |
---|---|---|
committer | Oleg Endo <olegendo@gcc.gnu.org> | 2013-02-03 20:06:01 +0000 |
commit | 50fe8924df35f99c4eaf8b79a712dafd3beeaceb (patch) | |
tree | 457a1626baf08bc82ee290b2bf6b9fe3edbf5b31 /gcc/config/sh/divtab.c | |
parent | 1a04ac2bc8e3e3dc3fa09364c60d5e165a0c858b (diff) | |
download | gcc-50fe8924df35f99c4eaf8b79a712dafd3beeaceb.zip gcc-50fe8924df35f99c4eaf8b79a712dafd3beeaceb.tar.gz gcc-50fe8924df35f99c4eaf8b79a712dafd3beeaceb.tar.bz2 |
divtab.c: Fix formatting and comments throughout the file.
* config/sh/divtab.c: Fix formatting and comments throughout the file.
* config/sh/sh4-300.md: Likewise.
* config/sh/sh4a.md: Likewise.
* config/sh/constraints.md: Likewise.
* config/sh/sh.md: Likewise.
* config/sh/netbsd-elf.h: Likewise.
* config/sh/predicates.md: Likewise.
* config/sh/sh-protos.h: Likewise.
* config/sh/ushmedia.h: Likewise.
* config/sh/linux.h: Likewise.
* config/sh/sh.c: Likewise.
* config/sh/superh.h: Likewise.
* config/sh/elf.h: Likewise.
* config/sh/sh4.md: Likewise.
* config/sh/sh.h: Likewise.
From-SVN: r195703
Diffstat (limited to 'gcc/config/sh/divtab.c')
-rw-r--r-- | gcc/config/sh/divtab.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gcc/config/sh/divtab.c b/gcc/config/sh/divtab.c index 4a0fc99..f5f0bb4 100644 --- a/gcc/config/sh/divtab.c +++ b/gcc/config/sh/divtab.c @@ -53,7 +53,8 @@ double max_defect3 = 0.; double max_defect3_x; int max_defect3_val; -static double note_defect3 (int val, double d2, double y2d, double x) +static double +note_defect3 (int val, double d2, double y2d, double x) { int cutoff_val = val >> CUTOFF_BITS; double cutoff; @@ -172,8 +173,10 @@ main () printf (" Min defect: %e at %e\n", min_defect, min_defect_x); printf (" Max 2nd step defect: %e at %e\n", max_defect2, max_defect2_x); printf (" Min 2nd step defect: %e at %e\n", min_defect2, min_defect2_x); - printf (" Max div defect: %e at %d:%e\n", max_defect3, max_defect3_val, max_defect3_x); - printf (" Min div defect: %e at %d:%e\n", min_defect3, min_defect3_val, min_defect3_x); + printf (" Max div defect: %e at %d:%e\n", max_defect3, max_defect3_val, + max_defect3_x); + printf (" Min div defect: %e at %d:%e\n", min_defect3, min_defect3_val, + min_defect3_x); printf (" Defect at 1: %e\n", calc_defect (1., constants[0], factors[0])); printf (" Defect at -2: %e */\n", |