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

Unified Diff: third_party/WebKit/Source/platform/heap/asm/SaveRegisters_x86.asm

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 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
Index: third_party/WebKit/Source/platform/heap/asm/SaveRegisters_x86.asm
diff --git a/third_party/WebKit/Source/platform/heap/asm/SaveRegisters_x86.asm b/third_party/WebKit/Source/platform/heap/asm/SaveRegisters_x86.asm
index 35fa2c978e7ce51c598327e9ca7816c73f4fcc01..8374167f880df1e36f8ce9b592a3e0d094c19eea 100644
--- a/third_party/WebKit/Source/platform/heap/asm/SaveRegisters_x86.asm
+++ b/third_party/WebKit/Source/platform/heap/asm/SaveRegisters_x86.asm
@@ -65,13 +65,13 @@
%endif
;; typedef void (*PushAllRegistersCallback)(SafePointBarrier*, ThreadState*, intptr_t*);
-;; extern "C" void pushAllRegisters(SafePointBarrier*, ThreadState*, PushAllRegistersCallback)
+;; extern "C" void PushAllRegisters(SafePointBarrier*, ThreadState*, PushAllRegistersCallback)
- global mangle(pushAllRegisters) PRIVATE
+ global mangle(PushAllRegisters) PRIVATE
%if X64POSIX
-mangle(pushAllRegisters):
+mangle(PushAllRegisters):
;; Push all callee-saves registers to get them
;; on the stack for conservative stack scanning.
;; We maintain 16-byte alignment at calls (required on Mac).
@@ -98,7 +98,7 @@ mangle(pushAllRegisters):
%elif X64WIN
-mangle(pushAllRegisters):
+mangle(PushAllRegisters):
;; Push all callee-saves registers to get them
;; on the stack for conservative stack scanning.
;; There is an 8-byte return address on the stack and we push
@@ -126,7 +126,7 @@ mangle(pushAllRegisters):
%elif IA32
-mangle(pushAllRegisters):
+mangle(PushAllRegisters):
;; Push all callee-saves registers to get them
;; on the stack for conservative stack scanning.
;; We maintain 16-byte alignment at calls (required on

Powered by Google App Engine
This is Rietveld 408576698