Reviewers: , Description: Experimental: fix compilation error on ARM.
[email protected] Please review this at http://codereview.chromium.org/28254 SVN Base: http://v8.googlecode.com/svn/branches/experimental/toiger/ Affected files: M src/codegen-arm.cc Index: src/codegen-arm.cc =================================================================== --- src/codegen-arm.cc (revision 1381) +++ src/codegen-arm.cc (working copy) @@ -2494,7 +2494,7 @@ // Check that extension is NULL. __ ldr(tmp2, ContextOperand(tmp, Context::EXTENSION_INDEX)); __ tst(tmp2, tmp2); - __ b(ne, slow); + slow->Branch(ne); // Load next context in chain. __ ldr(tmp, ContextOperand(tmp, Context::CLOSURE_INDEX)); __ ldr(tmp, FieldMemOperand(tmp, JSFunction::kContextOffset)); --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
