Reviewers: Kevin Millikin, Description: Fix VirtualFrame::is_used for ARM
Caused a compiler warning when compiling on Windows. Please review this at http://codereview.chromium.org/67108 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/virtual-frame-arm.h Index: src/virtual-frame-arm.h =================================================================== --- src/virtual-frame-arm.h (revision 1693) +++ src/virtual-frame-arm.h (working copy) @@ -85,7 +85,7 @@ } bool is_used(Register reg) { - return is_used(reg.code()) != kIllegalIndex; + return is_used(reg.code()); } // Add extra in-memory elements to the top of the frame to match an actual --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
