Index: src/mips/ic-mips.cc |
diff --git a/src/mips/ic-mips.cc b/src/mips/ic-mips.cc |
index fa8a7bb74eec3a3b4e0b462075c27130b285bf50..ce51450105c8d1586957535097dba302429481cf 100644 |
--- a/src/mips/ic-mips.cc |
+++ b/src/mips/ic-mips.cc |
@@ -1,4 +1,4 @@ |
-// Copyright 2010 the V8 project authors. All rights reserved. |
+// Copyright 2011 the V8 project authors. All rights reserved. |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
// met: |
@@ -31,7 +31,7 @@ |
#if defined(V8_TARGET_ARCH_MIPS) |
-#include "codegen-inl.h" |
+#include "codegen.h" |
#include "code-stubs.h" |
#include "ic-inl.h" |
#include "runtime.h" |
@@ -115,39 +115,6 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) { |
} |
-bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) { |
- UNIMPLEMENTED_MIPS(); |
- return false; |
-} |
- |
- |
-bool LoadIC::PatchInlinedContextualLoad(Address address, |
- Object* map, |
- Object* cell, |
- bool is_dont_delete) { |
- UNIMPLEMENTED_MIPS(); |
- return false; |
-} |
- |
- |
-bool StoreIC::PatchInlinedStore(Address address, Object* map, int offset) { |
- UNIMPLEMENTED_MIPS(); |
- return false; |
-} |
- |
- |
-bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) { |
- UNIMPLEMENTED_MIPS(); |
- return false; |
-} |
- |
- |
-bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) { |
- UNIMPLEMENTED_MIPS(); |
- return false; |
-} |
- |
- |
Object* KeyedLoadIC_Miss(Arguments args); |