diff options
author | Henrik Gramner <henrik@gramner.com> | 2018-01-18 23:20:33 +0100 |
---|---|---|
committer | Henrik Gramner <henrik@gramner.com> | 2018-01-20 19:23:37 +0100 |
commit | 6f62b0bd4ff2bd4333d899b697f82643d14ff560 (patch) | |
tree | ec2a9a293cb9c309f0038069656180f78a8baafd | |
parent | eb5f063e7ccc93062a70faac2402a533bb9669fd (diff) | |
download | ffmpeg-6f62b0bd4ff2bd4333d899b697f82643d14ff560.tar.gz |
x86inc: Drop cpuflags_slowctz
-rw-r--r-- | libavutil/x86/x86inc.asm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm index 438863042f..5044ee86f0 100644 --- a/libavutil/x86/x86inc.asm +++ b/libavutil/x86/x86inc.asm @@ -827,9 +827,8 @@ BRANCH_INSTR jz, je, jnz, jne, jl, jle, jnl, jnle, jg, jge, jng, jnge, ja, jae, %assign cpuflags_cache32 (1<<21) %assign cpuflags_cache64 (1<<22) -%assign cpuflags_slowctz (1<<23) -%assign cpuflags_aligned (1<<24) ; not a cpu feature, but a function variant -%assign cpuflags_atom (1<<25) +%assign cpuflags_aligned (1<<23) ; not a cpu feature, but a function variant +%assign cpuflags_atom (1<<24) ; Returns a boolean value expressing whether or not the specified cpuflag is enabled. %define cpuflag(x) (((((cpuflags & (cpuflags_ %+ x)) ^ (cpuflags_ %+ x)) - 1) >> 31) & 1) |