Reviewers: Karl Klose, Description: Remove unwanted character
[email protected] Please review this at http://codereview.chromium.org/6615008/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/arm/full-codegen-arm.cc Index: src/arm/full-codegen-arm.cc =================================================================== --- src/arm/full-codegen-arm.cc (revision 7033) +++ src/arm/full-codegen-arm.cc (working copy) @@ -3163,7 +3163,7 @@ // Swap elements. __ ldr(scratch1, MemOperand(index1, 0)); - __ ldr(scratch2, MemOperand(index2, 0))); + __ ldr(scratch2, MemOperand(index2, 0)); __ str(scratch1, MemOperand(index2, 0)); __ str(scratch2, MemOperand(index1, 0)); -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
