Reviewers: Rico, Message: A tiny review for you.
Description: Fix compilation error on X64. Error is from r5080 Please review this at http://codereview.chromium.org/3030002/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/x64/codegen-x64.cc Index: src/x64/codegen-x64.cc =================================================================== --- src/x64/codegen-x64.cc (revision 5083) +++ src/x64/codegen-x64.cc (working copy) @@ -438,7 +438,7 @@ default: UNREACHABLE(); - return Operand(rax); + return Operand(rsp, 0); } } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
