Revision: 4088
Author: [email protected]
Date: Wed Mar 10 09:30:35 2010
Log: Fix x64 and arm build.

Review URL: http://codereview.chromium.org/816003
http://code.google.com/p/v8/source/detail?r=4088

Modified:
 /branches/bleeding_edge/src/arm/virtual-frame-arm.h
 /branches/bleeding_edge/src/x64/virtual-frame-x64.h

=======================================
--- /branches/bleeding_edge/src/arm/virtual-frame-arm.h Fri Mar 5 15:54:13 2010 +++ /branches/bleeding_edge/src/arm/virtual-frame-arm.h Wed Mar 10 09:30:35 2010
@@ -364,6 +364,8 @@
   // the frame.  Nip(k) is equivalent to x = Pop(), Drop(k), Push(x).
   inline void Nip(int num_dropped);

+  inline void SetTypeForLocalAt(int index, NumberInfo info);
+
  private:
   static const int kLocal0Offset = JavaScriptFrameConstants::kLocal0Offset;
static const int kFunctionOffset = JavaScriptFrameConstants::kFunctionOffset;
=======================================
--- /branches/bleeding_edge/src/x64/virtual-frame-x64.h Fri Mar 5 15:54:13 2010 +++ /branches/bleeding_edge/src/x64/virtual-frame-x64.h Wed Mar 10 09:30:35 2010
@@ -416,6 +416,8 @@
   // the frame.  Nip(k) is equivalent to x = Pop(), Drop(k), Push(x).
   inline void Nip(int num_dropped);

+  inline void SetTypeForLocalAt(int index, NumberInfo info);
+
  private:
   static const int kLocal0Offset = JavaScriptFrameConstants::kLocal0Offset;
static const int kFunctionOffset = JavaScriptFrameConstants::kFunctionOffset;

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to