Revision: 22804
Author: [email protected]
Date: Mon Aug 4 09:01:26 2014 UTC
Log: Use ARRAY_SIZE instead of DIY code.
This improves r22769.
[email protected]
Review URL: https://codereview.chromium.org/437153002
http://code.google.com/p/v8/source/detail?r=22804
Modified:
/branches/bleeding_edge/src/runtime.cc
=======================================
--- /branches/bleeding_edge/src/runtime.cc Fri Aug 1 09:23:07 2014 UTC
+++ /branches/bleeding_edge/src/runtime.cc Mon Aug 4 09:01:26 2014 UTC
@@ -15575,8 +15575,7 @@
const Runtime::Function* Runtime::FunctionForEntry(Address entry) {
- size_t length = sizeof(kIntrinsicFunctions) /
sizeof(*kIntrinsicFunctions);
- for (size_t i = 0; i < length; ++i) {
+ for (size_t i = 0; i < ARRAY_SIZE(kIntrinsicFunctions); ++i) {
if (entry == kIntrinsicFunctions[i].entry) {
return &(kIntrinsicFunctions[i]);
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.