aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-22 18:09:26 +0000
committerChris Lattner <sabre@nondot.org>2003-10-22 18:09:26 +0000
commit0dcbc55aca59b206d84142b6d205e16bafccde74 (patch)
tree0c3be993c15c29a59c83903d3114020272b21f96
parent8bbaf475f36cb661798389843f01df37032d6ed5 (diff)
Make code fit in 80 columns
git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@9382 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--SingleSource/UnitTests/2003-05-26-Shorts.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/SingleSource/UnitTests/2003-05-26-Shorts.c b/SingleSource/UnitTests/2003-05-26-Shorts.c
index c76791ae..9db8c9c3 100644
--- a/SingleSource/UnitTests/2003-05-26-Shorts.c
+++ b/SingleSource/UnitTests/2003-05-26-Shorts.c
@@ -27,10 +27,10 @@ main(int argc, char** argv)
unsigned short us = (unsigned short) UL; /* 0xb8a3 = 47267 */
short s = (short) UL; /* 0xb8a3 = -18269 */
- unsigned char ub = (unsigned char) UL; /* 0xa3 = 163 */
- signed char b = ( signed char) UL; /* 0xa3 = -93 */
+ unsigned char ub = (unsigned char) UL; /* 0xa3 = 163 */
+ signed char b = ( signed char) UL; /* 0xa3 = -93 */
- printf(" ui = %u (0x%x)\t\tUL-ui = %lld (0x%llx)\n", ui, ui, UL-ui, UL-ui);
+ printf(" ui = %u (0x%x)\t\tUL-ui = %lld (0x%llx)\n", ui, ui, UL-ui, UL-ui);
printf("ui*ui = %u (0x%x)\t UL/ui = %lld (0x%llx)\n\n",
(unsigned int) ui*ui, (unsigned int) ui*ui, UL/ui, UL/ui);
@@ -38,7 +38,7 @@ main(int argc, char** argv)
printf(" i* i = %d (0x%x)\tL/ i = %lld (0x%llx)\n\n",
(int) i*i, (int) i*i, L/i, L/i);
- printf("us = %u (0x%x)\t\tUL-us = %lld (0x%llx)\n", us, us, UL-us, UL-us);
+ printf("us = %u (0x%x)\t\tUL-us = %lld (0x%llx)\n", us, us, UL-us, UL-us);
printf("us*us = %u (0x%x)\t UL/us = %lld (0x%llx)\n\n",
(unsigned short) us*us, (unsigned short) us*us, UL/us, UL/us);
@@ -46,11 +46,11 @@ main(int argc, char** argv)
printf(" s* s = %d (0x%x)\tL/ s = %lld (0x%llx)\n\n",
(short) s*s, (short) s*s, L/s, L/s);
- printf("ub = %u (0x%x)\t\tUL-ub = %lld (0x%llx)\n", ub, ub, UL-ub, UL-ub);
+ printf("ub = %u (0x%x)\t\tUL-ub = %lld (0x%llx)\n", ub, ub, UL-ub, UL-ub);
printf("ub*ub = %u (0x%x)\t\tUL/ub = %lld (0x%llx)\n\n",
(unsigned char) ub*ub, (unsigned char) ub*ub, UL/ub, UL/ub);
- printf(" b = %d (0x%x)\t\tL-b = %lld (0x%llx)\n", b, b, L-b, L-b);
+ printf(" b = %d (0x%x)\t\tL-b = %lld (0x%llx)\n", b, b, L-b, L-b);
printf(" b* b = %d (0x%x)\t\t\tL/b = %lld (0x%llx)\n\n",
(signed char) b*b, (signed char) b*b, L/b, L/b);