Revision: 6640 Author: [email protected] Date: Fri Feb 4 05:46:09 2011 Log: Fix ARM debug build. Insert missing declaration.
Review URL: http://codereview.chromium.org/6250160 http://code.google.com/p/v8/source/detail?r=6640 Modified: /branches/bleeding_edge/src/arm/lithium-arm.h ======================================= --- /branches/bleeding_edge/src/arm/lithium-arm.h Fri Feb 4 05:28:23 2011 +++ /branches/bleeding_edge/src/arm/lithium-arm.h Fri Feb 4 05:46:09 2011 @@ -239,6 +239,10 @@ LOperand* FirstInput() { return InputAt(0); } LOperand* Output() { return HasResult() ? result() : NULL; } + +#ifdef DEBUG + void VerifyCall(); +#endif private: LEnvironment* environment_; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
