Commit eb64758d authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

Cosmetic fix wrt to V8_INLINE usage in cpu.cc.

R=verwaest@chromium.org

Review URL: https://codereview.chromium.org/23535003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16378 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent b45fa062
......@@ -58,7 +58,7 @@ static V8_INLINE(void __cpuid(int cpu_info[4], int info_type)) {
#else // !V8_CC_MSVC || (!defined(__i386__) && !defined(__pic__))
static void V8_INLINE(__cpuid(int cpu_info[4], int info_type)) {
static V8_INLINE(void __cpuid(int cpu_info[4], int info_type)) {
__asm__ volatile (
"cpuid \n\t"
: "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment