Revision: 5973 Author: [email protected] Date: Fri Dec 10 08:33:36 2010 Log: Fix x64 build after r5970, the same way as for ARM.
[email protected] Review URL: http://codereview.chromium.org/5709005 http://code.google.com/p/v8/source/detail?r=5973 Modified: /branches/bleeding_edge/src/x64/ic-x64.cc ======================================= --- /branches/bleeding_edge/src/x64/ic-x64.cc Tue Dec 7 03:31:57 2010 +++ /branches/bleeding_edge/src/x64/ic-x64.cc Fri Dec 10 08:33:36 2010 @@ -1951,10 +1951,8 @@ void CompareIC::UpdateCaches(Handle<Object> x, Handle<Object> y) { HandleScope scope; Handle<Code> rewritten; -#ifdef DEBUG State previous_state = GetState(); -#endif - State state = TargetState(x, y); + State state = TargetState(previous_state, x, y); if (state == GENERIC) { CompareStub stub(GetCondition(), strict(), NO_COMPARE_FLAGS); rewritten = stub.GetCode(); @@ -1973,6 +1971,10 @@ } #endif } + +void PatchInlinedSmiCode(Address address) { + UNIMPLEMENTED(); +} } } // namespace v8::internal -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
