public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-4881] Fix minor whitespace issues
@ 2020-11-10 16:08 Jeff Law
  0 siblings, 0 replies; only message in thread
From: Jeff Law @ 2020-11-10 16:08 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:831f24a778a016c6ce1ae739235e3f7e1f28ed8c

commit r11-4881-g831f24a778a016c6ce1ae739235e3f7e1f28ed8c
Author: Jeff Law <law@redhat.com>
Date:   Tue Nov 10 09:07:24 2020 -0700

    Fix minor whitespace issues
    
    libgcc/
    
            * libgcc2.c: Fix whitespace issues in most recent change.

Diff:
---
 libgcc/libgcc2.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/libgcc/libgcc2.c b/libgcc/libgcc2.c
index 4e4defb9bce..cf0ca299c72 100644
--- a/libgcc/libgcc2.c
+++ b/libgcc/libgcc2.c
@@ -77,7 +77,7 @@ __addvSI3 (Wtype a, Wtype b)
 {
   Wtype w;
 
-  if (__builtin_add_overflow(a, b, &w))
+  if (__builtin_add_overflow (a, b, &w))
     abort ();
 
   return w;
@@ -88,7 +88,7 @@ __addvsi3 (SItype a, SItype b)
 {
   SItype w;
 
-  if (__builtin_add_overflow(a, b, &w))
+  if (__builtin_add_overflow (a, b, &w))
     abort ();
 
   return w;
@@ -102,7 +102,7 @@ __addvDI3 (DWtype a, DWtype b)
 {
   DWtype w;
 
-  if (__builtin_add_overflow(a, b, &w))
+  if (__builtin_add_overflow (a, b, &w))
     abort ();
 
   return w;
@@ -115,7 +115,7 @@ __subvSI3 (Wtype a, Wtype b)
 {
   Wtype w;
 
-  if (__builtin_sub_overflow(a, b, &w))
+  if (__builtin_sub_overflow (a, b, &w))
     abort ();
 
   return w;
@@ -126,7 +126,7 @@ __subvsi3 (SItype a, SItype b)
 {
   SItype w;
 
-  if (__builtin_sub_overflow(a, b, &w))
+  if (__builtin_sub_overflow (a, b, &w))
     abort ();
 
   return w;
@@ -140,7 +140,7 @@ __subvDI3 (DWtype a, DWtype b)
 {
   DWtype w;
 
-  if (__builtin_sub_overflow(a, b, &w))
+  if (__builtin_sub_overflow (a, b, &w))
     abort ();
 
   return w;
@@ -153,7 +153,7 @@ __mulvSI3 (Wtype a, Wtype b)
 {
   Wtype w;
 
-  if (__builtin_mul_overflow(a, b, &w))
+  if (__builtin_mul_overflow (a, b, &w))
     abort ();
 
   return w;
@@ -164,7 +164,7 @@ __mulvsi3 (SItype a, SItype b)
 {
   SItype w;
 
-  if (__builtin_mul_overflow(a, b, &w))
+  if (__builtin_mul_overflow (a, b, &w))
     abort ();
 
   return w;
@@ -178,7 +178,7 @@ __negvSI2 (Wtype a)
 {
   Wtype w;
 
-  if (__builtin_sub_overflow(0, a, &w))
+  if (__builtin_sub_overflow (0, a, &w))
     abort ();
 
   return w;
@@ -189,7 +189,7 @@ __negvsi2 (SItype a)
 {
   SItype w;
 
-  if (__builtin_sub_overflow(0, a, &w))
+  if (__builtin_sub_overflow (0, a, &w))
     abort ();
 
   return w;
@@ -203,7 +203,7 @@ __negvDI2 (DWtype a)
 {
   DWtype w;
 
-  if (__builtin_sub_overflow(0, a, &w))
+  if (__builtin_sub_overflow (0, a, &w))
     abort ();
 
   return w;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-11-10 16:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-10 16:08 [gcc r11-4881] Fix minor whitespace issues Jeff Law

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).