diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-10-11 12:43:43 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-10-11 12:43:43 +0000 |
commit | eebedaa523a43bb45a54000c179e862fe9f32a13 (patch) | |
tree | 0a6c2fe46008d6816c9ccb0e2dbdd0a8f343664e /gcc/longlong.h | |
parent | fd079ba91c196e1d50a170409e6a23b74c852aab (diff) | |
download | gcc-eebedaa523a43bb45a54000c179e862fe9f32a13.zip gcc-eebedaa523a43bb45a54000c179e862fe9f32a13.tar.gz gcc-eebedaa523a43bb45a54000c179e862fe9f32a13.tar.bz2 |
calls.c: Fix formatting.
* calls.c: Fix formatting.
* c-decl.c: Likewise.
* cfgcleanup.c: Likewise.
* combine.c: Likewise.
* cppfiles.c: Likewise.
* cpplib.c: Likewise.
* cppmacro.c: Likewise.
* crtstuff.c: Likewise.
* cse.c: Likewise.
* dwarf2out.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* gcse.c: Likewise.
* genattrtab.c: Likewise.
* ggc-page.c: Likewise.
* integrate.c: Likewise.
* libgcc2.c: Likewise.
* loop.c: Likewise.
* optabs.c: Likewise.
* profile.c: Likewise.
* protoize.c: Likewise.
* real.c: Likewise.
* recog.c: Likewise.
* reload1.c: Likewise.
* reload.c: Likewise.
* reorg.c: Likewise.
* resource.c: Likewise.
* sched-rgn.c: Likewise.
* sdbout.c: Likewise.
* stmt.c: Likewise.
* toplev.c: Likewise.
* varasm.c: Likewise.
From-SVN: r46182
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r-- | gcc/longlong.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h index 70f9e1ad..f218a02 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -585,7 +585,7 @@ UDItype __umulsidi3 (USItype, USItype); "1" ((USItype) (al)), \ "g" ((USItype) (bl))) -/* The '020, '030, '040 and CPU32 have 32x32->64 and 64/32->32q-32r. */ +/* The '020, '030, '040 and CPU32 have 32x32->64 and 64/32->32q-32r. */ #if defined (__mc68020__) || defined(mc68020) \ || defined(__mc68030__) || defined(mc68030) \ || defined(__mc68040__) || defined(mc68040) \ @@ -654,7 +654,7 @@ UDItype __umulsidi3 (USItype, USItype); #endif /* not mcf5200 */ #endif /* not mc68020 */ -/* The '020, '030, '040 and '060 have bitfield insns. */ +/* The '020, '030, '040 and '060 have bitfield insns. */ #if defined (__mc68020__) || defined(mc68020) \ || defined(__mc68030__) || defined(mc68030) \ || defined(__mc68040__) || defined(mc68040) \ @@ -1184,7 +1184,7 @@ UDItype __umulsidi3 (USItype, USItype); : "r" ((USItype) (__d)), \ "1" ((USItype) (__n1)), \ "0" ((USItype) (__n0)) : "g1" __AND_CLOBBER_CC) -#define UDIV_TIME (3+7*32) /* 7 instructions/iteration. 32 iterations. */ +#define UDIV_TIME (3+7*32) /* 7 instructions/iteration. 32 iterations. */ #endif /* __sparclite__ */ #endif /* __sparc_v8__ */ #endif /* sparc32 */ @@ -1377,7 +1377,7 @@ UDItype __umulsidi3 (USItype, USItype); __x1 += __ll_highpart (__x0);/* this can't give carry */ \ __x1 += __x2; /* but this indeed can */ \ if (__x1 < __x2) /* did we get it? */ \ - __x3 += __ll_B; /* yes, add it in the proper pos. */ \ + __x3 += __ll_B; /* yes, add it in the proper pos. */ \ \ (w1) = __x3 + __ll_highpart (__x1); \ (w0) = __ll_lowpart (__x1) * __ll_B + __ll_lowpart (__x0); \ |