diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-29 15:05:53 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-30 18:50:33 +0200 |
commit | a886b279a0f309b83b28612eb7661402cb1e41ef (patch) | |
tree | 6cc35ff8e06849c934a0650db5ab3d05ea36233c /libavutil/x86/cpu.c | |
parent | 04fc5c6bde5da842e8b40a9a76eb72c8327ae40b (diff) | |
download | ffmpeg-a886b279a0f309b83b28612eb7661402cb1e41ef.tar.gz |
x86: cosmetics: Comment some #endifs for better readability
Diffstat (limited to 'libavutil/x86/cpu.c')
-rw-r--r-- | libavutil/x86/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/x86/cpu.c b/libavutil/x86/cpu.c index 645bb83f77..9acc86755d 100644 --- a/libavutil/x86/cpu.c +++ b/libavutil/x86/cpu.c @@ -144,8 +144,8 @@ int ff_get_cpu_flags_x86(void) if ((eax & 0x6) == 0x6) rval |= AV_CPU_FLAG_AVX; } -#endif -#endif +#endif /* HAVE_AVX */ +#endif /* HAVE_SSE */ } cpuid(0x80000000, max_ext_level, ebx, ecx, edx); |