Reviewers: Mads Ager, Description: Remove handle scope that caused debug mode assertion failures because a handle was returned out of the destroyed scope.
Please review this at http://codereview.chromium.org/1029003 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ia32/codegen-ia32.cc Index: src/ia32/codegen-ia32.cc =================================================================== --- src/ia32/codegen-ia32.cc (revision 4151) +++ src/ia32/codegen-ia32.cc (working copy) @@ -9226,9 +9226,9 @@ __ bind(&get_result); } + Handle<Code> GetBinaryOpStub(int key, BinaryOpIC::TypeInfo type_info) { GenericBinaryOpStub stub(key, type_info); - HandleScope scope; return stub.GetCode(); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
