Title: [118415] trunk/Source/_javascript_Core
Revision
118415
Author
[email protected]
Date
2012-05-24 14:17:38 -0700 (Thu, 24 May 2012)

Log Message

Fix arm build

Rubber stamped by Geoff Garen

* dfg/DFGGPRInfo.h:
(GPRInfo):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (118414 => 118415)


--- trunk/Source/_javascript_Core/ChangeLog	2012-05-24 21:15:17 UTC (rev 118414)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-05-24 21:17:38 UTC (rev 118415)
@@ -1,5 +1,14 @@
 2012-05-24  Gavin Barraclough  <[email protected]>
 
+        Fix arm build
+
+        Rubber stamped by Geoff Garen
+
+        * dfg/DFGGPRInfo.h:
+        (GPRInfo):
+
+2012-05-24  Gavin Barraclough  <[email protected]>
+
         Move cacheFlush from ExecutableAllocator to Assembler classes
         https://bugs.webkit.org/show_bug.cgi?id=87420
 

Modified: trunk/Source/_javascript_Core/dfg/DFGGPRInfo.h (118414 => 118415)


--- trunk/Source/_javascript_Core/dfg/DFGGPRInfo.h	2012-05-24 21:15:17 UTC (rev 118414)
+++ trunk/Source/_javascript_Core/dfg/DFGGPRInfo.h	2012-05-24 21:17:38 UTC (rev 118415)
@@ -414,8 +414,8 @@
     // between the arguments being set up, and the call being made. That said,
     // any change introducing a problem here is likely to be immediately apparent!
     static const GPRReg argumentGPR3 = ARMRegisters::r3; // FIXME!
-    static const GPRReg nonArgGPR0 = X86Registers::r4; // regT3
-    static const GPRReg nonArgGPR1 = X86Registers::r8; // regT4
+    static const GPRReg nonArgGPR0 = ARMRegisters::r4; // regT3
+    static const GPRReg nonArgGPR1 = ARMRegisters::r8; // regT4
     static const GPRReg returnValueGPR = ARMRegisters::r0; // regT0
     static const GPRReg returnValueGPR2 = ARMRegisters::r1; // regT1
     static const GPRReg nonPreservedNonReturnGPR = ARMRegisters::r2;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to