projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
233d1ac
)
avutil/x86/cpu: fix cpuid sub-leaf selection
author
lvqcl
<lvqcl.mail@gmail.com>
Sat, 27 Sep 2014 11:21:31 +0000
(13:21 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sat, 27 Sep 2014 11:21:31 +0000
(13:21 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavutil/x86/cpu.c
patch
|
blob
|
history
diff --git
a/libavutil/x86/cpu.c
b/libavutil/x86/cpu.c
index
8ad4784
..
2b62e92
100644
(file)
--- a/
libavutil/x86/cpu.c
+++ b/
libavutil/x86/cpu.c
@@
-45,7
+45,7
@@
"cpuid \n\t" \
"xchg %%"REG_b", %%"REG_S \
: "=a" (eax), "=S" (ebx), "=c" (ecx), "=d" (edx) \
- : "0" (index))
+ : "0" (index)
, "2"(0)
)
#define xgetbv(index, eax, edx) \
__asm__ (".byte 0x0f, 0x01, 0xd0" : "=a"(eax), "=d"(edx) : "c" (index))