Reviewers: Michael Starzinger,

Message:
Committed patchset #1 manually as r17054.

Description:
Remove incorrect assertion.

[email protected]
BUG=

Committed: https://code.google.com/p/v8/source/detail?r=17054

Please review this at https://codereview.chromium.org/25478004/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+0, -1 lines):
  M src/type-info.cc


Index: src/type-info.cc
diff --git a/src/type-info.cc b/src/type-info.cc
index c754fbc7e39c65a7ee470dafefdb6eb1692e2077..da4d1834421520f5dcbe110c433a57fb6c56d362 100644
--- a/src/type-info.cc
+++ b/src/type-info.cc
@@ -422,7 +422,6 @@ Handle<Type> TypeFeedbackOracle::ClauseType(TypeFeedbackId id) {
 Handle<Type> TypeFeedbackOracle::IncrementType(CountOperation* expr) {
   Handle<Object> object = GetInfo(expr->CountBinOpFeedbackId());
   Handle<Type> unknown(Type::None(), isolate_);
-  ASSERT(object->IsCode());
   if (!object->IsCode()) return unknown;
   Handle<Code> code = Handle<Code>::cast(object);
   if (!code->is_binary_op_stub()) return unknown;


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to