mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2026-02-10 20:29:53 +08:00
set EBX as output register
BUG=none TEST=none R=noahric@google.com Review URL: https://webrtc-codereview.appspot.com/2699005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@823 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
parent
a721402a20
commit
2f9868f121
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 822
|
Version: 823
|
||||||
License: BSD
|
License: BSD
|
||||||
License File: LICENSE
|
License File: LICENSE
|
||||||
|
|
||||||
|
|||||||
@ -11,6 +11,6 @@
|
|||||||
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
||||||
#define INCLUDE_LIBYUV_VERSION_H_
|
#define INCLUDE_LIBYUV_VERSION_H_
|
||||||
|
|
||||||
#define LIBYUV_VERSION 822
|
#define LIBYUV_VERSION 823
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||||
|
|||||||
@ -51,7 +51,7 @@ void CpuId(uint32 eax, uint32 ecx, uint32* cpu_info) {
|
|||||||
: "=D" (ebx),
|
: "=D" (ebx),
|
||||||
#else
|
#else
|
||||||
"cpuid \n"
|
"cpuid \n"
|
||||||
: "+b" (ebx),
|
: "=b" (ebx),
|
||||||
#endif // defined( __i386__) && defined(__PIC__)
|
#endif // defined( __i386__) && defined(__PIC__)
|
||||||
"+a" (eax), "+c" (ecx), "=d" (edx));
|
"+a" (eax), "+c" (ecx), "=d" (edx));
|
||||||
cpu_info[0] = eax;
|
cpu_info[0] = eax;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user