diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-30 20:55:11 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-30 20:55:11 +0000 |
commit | 8851e806c9f3675e49a1ac67e973aee413dd387b (patch) | |
tree | 5571e1edfbc286f33f9f02aa9fb4c0a973d14f11 /gcc/libgcc2.c | |
parent | 9a506adc7af1b07d359f6a25268b115ed32d34a2 (diff) | |
download | gcc-8851e806c9f3675e49a1ac67e973aee413dd387b.tar.gz |
* langhooks.c: Fix formatting.
* langhooks.h: Likewise.
* lcm.c: Likewise.
* libgcc2.c: Likewise.
* lists.c: Likewise.
* local-alloc.c: Likewise.
* loop.c: Likewise.
* loop.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54070 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index a88c08df366..5895c9c9fb4 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -151,9 +151,9 @@ __mulvsi3 (Wtype a, Wtype b) Wtype __negvsi2 (Wtype a) { - Wtype w; + Wtype w; - w = -a; + w = -a; if (a >= 0 ? w > 0 : w < 0) abort (); @@ -166,14 +166,14 @@ __negvsi2 (Wtype a) DWtype __negvdi2 (DWtype a) { - DWtype w; + DWtype w; - w = -a; + w = -a; if (a >= 0 ? w > 0 : w < 0) abort (); - return w; + return w; } #endif @@ -181,16 +181,16 @@ __negvdi2 (DWtype a) Wtype __absvsi2 (Wtype a) { - Wtype w = a; + Wtype w = a; - if (a < 0) + if (a < 0) #ifdef L_negvsi2 - w = __negvsi2 (a); + w = __negvsi2 (a); #else - w = -a; + w = -a; - if (w < 0) - abort (); + if (w < 0) + abort (); #endif return w; @@ -201,19 +201,19 @@ __absvsi2 (Wtype a) DWtype __absvdi2 (DWtype a) { - DWtype w = a; + DWtype w = a; - if (a < 0) + if (a < 0) #ifdef L_negvsi2 - w = __negvsi2 (a); + w = __negvsi2 (a); #else - w = -a; + w = -a; - if (w < 0) - abort (); + if (w < 0) + abort (); #endif - return w; + return w; } #endif @@ -221,7 +221,7 @@ __absvdi2 (DWtype a) DWtype __mulvdi3 (DWtype u, DWtype v) { - DWtype w; + DWtype w; w = u * v; @@ -1383,21 +1383,21 @@ __bb_exit_func (void) /* length of extra data in bytes. */ __write_long ((4 + 8 + 8) + (4 + 8 + 8), da_file, 4); - /* overall statistics. */ + /* overall statistics. */ /* number of counters. */ - __write_long (n_counters_p, da_file, 4); + __write_long (n_counters_p, da_file, 4); /* sum of counters. */ - __write_gcov_type (sum_counters_p, da_file, 8); + __write_gcov_type (sum_counters_p, da_file, 8); /* maximal counter. */ - __write_gcov_type (max_counter_p, da_file, 8); + __write_gcov_type (max_counter_p, da_file, 8); - /* per-object statistics. */ + /* per-object statistics. */ /* number of counters. */ - __write_long (ptr->ncounts, da_file, 4); + __write_long (ptr->ncounts, da_file, 4); /* sum of counters. */ - __write_gcov_type (sum_counters_o, da_file, 8); + __write_gcov_type (sum_counters_o, da_file, 8); /* maximal counter. */ - __write_gcov_type (max_counter_o, da_file, 8); + __write_gcov_type (max_counter_o, da_file, 8); /* write execution counts for each function. */ @@ -1460,7 +1460,7 @@ __bb_init_func (struct bb *blocks) if (blocks->zero_word) return; - + /* Initialize destructor and per-thread data. */ if (!bb_head) atexit (__bb_exit_func); @@ -1474,7 +1474,7 @@ __bb_init_func (struct bb *blocks) /* Called before fork or exec - write out profile information gathered so far and reset it to zero. This avoids duplication or loss of the profile information gathered so far. */ -void +void __bb_fork_func (void) { struct bb *ptr; |