aboutsummaryrefslogtreecommitdiff
path: root/libgcc
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2020-11-10 09:07:24 -0700
committerJeff Law <law@redhat.com>2020-11-10 09:07:51 -0700
commit831f24a778a016c6ce1ae739235e3f7e1f28ed8c (patch)
treeea80a7bff5d109e6900139e9f5e5604f4b6d25df /libgcc
parentebc4cd54b2378147d7041fd05ff03bd0e1a61e48 (diff)
downloadgcc-831f24a778a016c6ce1ae739235e3f7e1f28ed8c.zip
gcc-831f24a778a016c6ce1ae739235e3f7e1f28ed8c.tar.gz
gcc-831f24a778a016c6ce1ae739235e3f7e1f28ed8c.tar.bz2
Fix minor whitespace issues
libgcc/ * libgcc2.c: Fix whitespace issues in most recent change.
Diffstat (limited to 'libgcc')
-rw-r--r--libgcc/libgcc2.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/libgcc/libgcc2.c b/libgcc/libgcc2.c
index 4e4defb..cf0ca29 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;