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

Unified Diff: third_party/WebKit/Source/platform/heap/asm/SaveRegisters_arm.S

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_arm.S
diff --git a/third_party/WebKit/Source/platform/heap/asm/SaveRegisters_arm.S b/third_party/WebKit/Source/platform/heap/asm/SaveRegisters_arm.S
index 4e2f9912c95364c49ae82153d67d96aa111b0323..af961fe1a5d500225a62f96b35392255642f9a86 100644
--- a/third_party/WebKit/Source/platform/heap/asm/SaveRegisters_arm.S
+++ b/third_party/WebKit/Source/platform/heap/asm/SaveRegisters_arm.S
@@ -31,12 +31,12 @@
/*
* typedef void (*PushAllRegistersCallback)(SafePointBarrier*, ThreadState*, intptr_t*);
- * extern "C" void pushAllRegisters(SafePointBarrier*, ThreadState*, PushAllRegistersCallback)
+ * extern "C" void PushAllRegisters(SafePointBarrier*, ThreadState*, PushAllRegistersCallback)
*/
-.type pushAllRegisters, %function
-.global pushAllRegisters
-.hidden pushAllRegisters
+.type PushAllRegisters, %function
+.global PushAllRegisters
+.hidden PushAllRegisters
#ifdef __thumb__
/* In THUMB Mode jump to ARM stub via bx to ensure CPU mode switch.
* FIXME: This trampoline is provided to workaround bugs in
@@ -46,7 +46,7 @@
.align 2
.code 16
.thumb_func
-pushAllRegisters:
+PushAllRegisters:
adr r3, pushAllRegistersARM
bx r3
@@ -59,7 +59,7 @@ pushAllRegistersARM:
/* ARM Mode */
.align 4
.code 32
-pushAllRegisters:
+PushAllRegisters:
#endif
/* Push all callee-saved registers and save return address. */
push {r4-r11, lr}

Powered by Google App Engine
This is Rietveld 408576698