diff options
author | Kazu Hirata <kazu@hxi.com> | 2002-01-05 22:11:21 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-01-05 22:11:21 +0000 |
commit | c4f2c49991795420f122884bb370ebfb757dc787 (patch) | |
tree | c82a399277d5efe697a879308c7e2870fbb15a79 /gcc/gcov.c | |
parent | cf0d9408617d653d4b53dd80e638ad0f4efe5161 (diff) | |
download | gcc-c4f2c49991795420f122884bb370ebfb757dc787.tar.gz |
cse.c: Fix formatting.
* cse.c: Fix formatting.
* dwarf2asm.c: Likewise.
* dwarf2out.c: Likewise.
* explow.c: Likewise.
* expmed.c: Likewise.
* function.c: Likewise.
* gcov.c: Likewise.
* gencheck.c: Likewise.
* genrecog.c: Likewise.
* ggc-common.c: Likewise.
* ggc-page.c: Likewise.
* global.c: Likewise.
From-SVN: r48570
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r-- | gcc/gcov.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gcov.c b/gcc/gcov.c index 62aa96ea3dc..3bb2ce19e2f 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -1,7 +1,7 @@ /* Gcov.c: prepend line execution counts and branch probabilities to a source file. Copyright (C) 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, - 1999, 2000, 2001 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002 Free Software Foundation, Inc. Contributed by James E. Wilson of Cygnus Support. Mangled by Bob Manson of Cygnus Support. @@ -615,7 +615,7 @@ create_program_flow_graph (bptr) { gcov_type tmp_count = 0; if (da_file && __read_gcov_type (&tmp_count, da_file, 8)) - abort(); + abort (); arcptr->arc_count = tmp_count; arcptr->count_valid = 1; @@ -760,7 +760,7 @@ read_files () /* Read and ignore the first word of the .da file, which is the count of how many numbers follow. */ if (da_file && __read_long (&total, da_file, 8)) - abort(); + abort (); while (! feof (bbg_file)) { @@ -885,7 +885,7 @@ scan_for_source_files () else if (line_num < 0) { /* Don't know what this is, but it's garbage. */ - abort(); + abort (); } } } |