Commit 78b174af authored by verwaest@chromium.org's avatar verwaest@chromium.org

Allow miss in GENERIC keyed load/store.

Review URL: https://chromiumcodereview.appspot.com/11975044

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13408 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent cd6771b8
......@@ -1343,10 +1343,10 @@ void KeyedLoadIC::UpdateCaches(LookupResult* lookup,
}
break;
case MEGAMORPHIC:
case GENERIC:
case DEBUG_STUB:
break;
case MONOMORPHIC_PROTOTYPE_FAILURE:
case GENERIC:
UNREACHABLE();
break;
}
......@@ -2124,10 +2124,10 @@ void KeyedStoreIC::UpdateCaches(LookupResult* lookup,
}
break;
case MEGAMORPHIC:
case GENERIC:
case DEBUG_STUB:
break;
case MONOMORPHIC_PROTOTYPE_FAILURE:
case GENERIC:
UNREACHABLE();
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment