summaryrefslogtreecommitdiffstats
path: root/libavcodec/i386
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-04-16 20:51:39 +0000
committerDiego Biurrun <diego@biurrun.de>2008-04-16 20:51:39 +0000
commit80465c7eed829e43c730e569854bca719973abbd (patch)
treec3755f27dc6529d88cffe1595a915e6e0fce1aa0 /libavcodec/i386
parent591d87babe623d989fb9bcfce9ee5e0cfcefbea0 (diff)
downloadffmpeg-streaming-80465c7eed829e43c730e569854bca719973abbd.zip
ffmpeg-streaming-80465c7eed829e43c730e569854bca719973abbd.tar.gz
cosmetics: Fix nonstandard indentation.
Originally committed as revision 12863 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386')
-rw-r--r--libavcodec/i386/cputest.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/libavcodec/i386/cputest.c b/libavcodec/i386/cputest.c
index 92e3d64..103c7af 100644
--- a/libavcodec/i386/cputest.c
+++ b/libavcodec/i386/cputest.c
@@ -45,25 +45,25 @@ int mm_support(void)
long a, c;
__asm__ __volatile__ (
- /* See if CPUID instruction is supported ... */
- /* ... Get copies of EFLAGS into eax and ecx */
- "pushf\n\t"
- "pop %0\n\t"
- "mov %0, %1\n\t"
+ /* See if CPUID instruction is supported ... */
+ /* ... Get copies of EFLAGS into eax and ecx */
+ "pushf\n\t"
+ "pop %0\n\t"
+ "mov %0, %1\n\t"
- /* ... Toggle the ID bit in one copy and store */
- /* to the EFLAGS reg */
- "xor $0x200000, %0\n\t"
- "push %0\n\t"
- "popf\n\t"
+ /* ... Toggle the ID bit in one copy and store */
+ /* to the EFLAGS reg */
+ "xor $0x200000, %0\n\t"
+ "push %0\n\t"
+ "popf\n\t"
- /* ... Get the (hopefully modified) EFLAGS */
- "pushf\n\t"
- "pop %0\n\t"
- : "=a" (a), "=c" (c)
- :
- : "cc"
- );
+ /* ... Get the (hopefully modified) EFLAGS */
+ "pushf\n\t"
+ "pop %0\n\t"
+ : "=a" (a), "=c" (c)
+ :
+ : "cc"
+ );
if (a == c)
return 0; /* CPUID not supported */
@@ -119,9 +119,9 @@ int mm_support(void)
#ifdef TEST
int main ( void )
{
- int mm_flags;
- mm_flags = mm_support();
- printf("mm_support = 0x%08X\n",mm_flags);
- return 0;
+ int mm_flags;
+ mm_flags = mm_support();
+ printf("mm_support = 0x%08X\n",mm_flags);
+ return 0;
}
#endif
OpenPOWER on IntegriCloud