Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: src/cpu.cc

Issue 23535003: Cosmetic fix wrt to V8_INLINE usage in cpu.cc. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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])
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698