From 41031221c82384f40b5664b5e12b1a81eefcdfe6 Mon Sep 17 00:00:00 2001 From: gus knight Date: Mon, 27 Jul 2015 12:43:40 -0400 Subject: Trim trailing spaces everywhere. --- lib/libtcc1.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'lib/libtcc1.c') diff --git a/lib/libtcc1.c b/lib/libtcc1.c index ece6413..69d111b 100644 --- a/lib/libtcc1.c +++ b/lib/libtcc1.c @@ -1,5 +1,5 @@ -/* TCC runtime library. - Parts of this code are (c) 2002 Fabrice Bellard +/* TCC runtime library. + Parts of this code are (c) 2002 Fabrice Bellard Copyright (C) 1987, 1988, 1992, 1994, 1995 Free Software Foundation, Inc. @@ -25,7 +25,7 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. +Boston, MA 02111-1307, USA. */ #include @@ -370,10 +370,10 @@ long long __divdi3(long long u, long long v) int c = 0; DWunion uu, vv; DWtype w; - + uu.ll = u; vv.ll = v; - + if (uu.s.high < 0) { c = ~c; uu.ll = __negdi2 (uu.ll); @@ -393,17 +393,17 @@ long long __moddi3(long long u, long long v) int c = 0; DWunion uu, vv; DWtype w; - + uu.ll = u; vv.ll = v; - + if (uu.s.high < 0) { c = ~c; uu.ll = __negdi2 (uu.ll); } if (vv.s.high < 0) vv.ll = __negdi2 (vv.ll); - + __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) &w); if (c) w = __negdi2 (w); @@ -418,7 +418,7 @@ unsigned long long __udivdi3(unsigned long long u, unsigned long long v) unsigned long long __umoddi3(unsigned long long u, unsigned long long v) { UDWtype w; - + __udivmoddi4 (u, v, &w); return w; } @@ -499,7 +499,7 @@ long long __tcc_cvt_ftol(long double x) /* XXX: fix tcc's code generator to do this instead */ float __floatundisf(unsigned long long a) { - DWunion uu; + DWunion uu; XFtype r; uu.ll = a; @@ -514,7 +514,7 @@ float __floatundisf(unsigned long long a) double __floatundidf(unsigned long long a) { - DWunion uu; + DWunion uu; XFtype r; uu.ll = a; @@ -529,7 +529,7 @@ double __floatundidf(unsigned long long a) long double __floatundixf(unsigned long long a) { - DWunion uu; + DWunion uu; XFtype r; uu.ll = a; @@ -608,7 +608,7 @@ unsigned long long __fixunsxfdi (long double a1) if (exp > 0) return (unsigned long long)-1; - else if (exp >= -63) + else if (exp >= -63) return l >> -exp; else return 0; -- cgit v1.3.1