0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

10l: cosmetic: more trailing whitespaces removed

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23364 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
zuxy 2007-05-21 07:47:53 +00:00
parent 92d79f93cb
commit 69c29620c5

View File

@ -51,7 +51,7 @@ cpuid(int func) {
#ifdef __x86_64__
asm("mov %%rbx, %%rsi\n\t"
#else
asm("mov %%ebx, %%esi\n\t"
asm("mov %%ebx, %%esi\n\t"
#endif
CPUID"\n\t"
#ifdef __x86_64__
@ -125,7 +125,7 @@ main(int argc, char **argv)
store32(idstr+4, regs.edx);
store32(idstr+8, regs.ecx);
idstr[12] = 0;
printf("vendor_id\t: %s\n", idstr);
printf("vendor_id\t: %s\n", idstr);
regs_ext = cpuid((1<<31) + 0);
max_ext_cpuid = regs_ext.eax;
@ -269,7 +269,7 @@ main(int argc, char **argv)
model_name = "Intel (R) Celeron (R) processor";
else
model_name = brandname(regs.ebx & 0xf);
}
}
printf("flags\t\t:");
for (i = 0; cap[i].bit >= 0; i++) {
@ -286,7 +286,7 @@ main(int argc, char **argv)
it is not indicated by a CPUID feature bit, so we
have to check the family, model and stepping instead. */
if (strstr(idstr, "AMD") &&
family == 5 &&
family == 5 &&
(model >= 9 || model == 8 && stepping >= 8))
printf(" %s", "k6_mtrr");
/* similar for cyrix_arr. */
@ -297,7 +297,7 @@ main(int argc, char **argv)
if (strstr(idstr, "Centaur") &&
family == 5)
printf(" %s", "centaur_mcr");
for (i = 0; cap_amd[i].bit >= 0; i++) {
if (amd_flags & (1 << cap_amd[i].bit)) {
printf(" %s", cap_amd[i].desc);
@ -337,5 +337,5 @@ main(int argc, char **argv)
if (model_name)
printf("%s\n", model_name);
else
printf("Unknown %s CPU\n", idstr);
printf("Unknown %s CPU\n", idstr);
}