Revert 5973 as well (related to previous commit)
TBR=lrn@chromium.org, Review URL: http://codereview.chromium.org/5754004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5979 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
5cf643aa42
commit
edba069919
@ -1951,8 +1951,10 @@ Condition CompareIC::ComputeCondition(Token::Value op) {
|
||||
void CompareIC::UpdateCaches(Handle<Object> x, Handle<Object> y) {
|
||||
HandleScope scope;
|
||||
Handle<Code> rewritten;
|
||||
#ifdef DEBUG
|
||||
State previous_state = GetState();
|
||||
State state = TargetState(previous_state, x, y);
|
||||
#endif
|
||||
State state = TargetState(x, y);
|
||||
if (state == GENERIC) {
|
||||
CompareStub stub(GetCondition(), strict(), NO_COMPARE_FLAGS);
|
||||
rewritten = stub.GetCode();
|
||||
@ -1972,10 +1974,6 @@ void CompareIC::UpdateCaches(Handle<Object> x, Handle<Object> y) {
|
||||
#endif
|
||||
}
|
||||
|
||||
void PatchInlinedSmiCode(Address address) {
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
|
||||
} } // namespace v8::internal
|
||||
|
||||
#endif // V8_TARGET_ARCH_X64
|
||||
|
Loading…
Reference in New Issue
Block a user