Author: [email protected]
Date: Tue Apr 14 07:54:41 2009
New Revision: 1705
Modified:
branches/bleeding_edge/src/virtual-frame-arm.h
Log:
Fix VirtualFrame::is_used for ARM
Caused a compiler warning when compiling on Windows.
Review URL: http://codereview.chromium.org/67108
Modified: branches/bleeding_edge/src/virtual-frame-arm.h
==============================================================================
--- branches/bleeding_edge/src/virtual-frame-arm.h (original)
+++ branches/bleeding_edge/src/virtual-frame-arm.h Tue Apr 14 07:54:41 2009
@@ -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
-~----------~----~----~----~------~----~------~--~---