Reviewers: Kevin Millikin,

Description:
Fix presubmit error.

[email protected]

Please review this at http://codereview.chromium.org/8223001/

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

Affected files:
  M     src/type-info.cc


Index: src/type-info.cc
===================================================================
--- src/type-info.cc    (revision 9557)
+++ src/type-info.cc    (working copy)
@@ -408,7 +408,8 @@
   Handle<Object> object = GetInfo(ast_id);
   if (object->IsUndefined() || object->IsSmi()) return;

- if (*object == isolate_->builtins()->builtin(Builtins::kStoreIC_GlobalProxy)) {
+  if (*object ==
+      isolate_->builtins()->builtin(Builtins::kStoreIC_GlobalProxy)) {
     // TODO(fschneider): We could collect the maps and signal that
     // we need a generic store (or load) here.
     ASSERT(Handle<Code>::cast(object)->ic_state() == MEGAMORPHIC);


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to