]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/libgcc2.c
langhooks.c: Fix formatting.
[gcc.git] / gcc / libgcc2.c
index a88c08df366b099978b4e7ba63c94942d0a1669b..5895c9c9fb4503adf7c7e3670b7519d911be6905 100644 (file)
@@ -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
 \f
@@ -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
 \f
@@ -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;
This page took 0.034133 seconds and 5 git commands to generate.