Reviewers: Toon Verwaest,

Message:
PTAL

Description:
Cosmetic fix wrt to V8_INLINE usage in cpu.cc.

Please review this at https://codereview.chromium.org/23535003/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/cpu.cc


Index: src/cpu.cc
diff --git a/src/cpu.cc b/src/cpu.cc
index d7c32dd88878d33467fb24a174699face2ece2c9..1bae0016d63aecc2b000f48d58006577d072e608 100644
--- a/src/cpu.cc
+++ b/src/cpu.cc
@@ -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])


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to