Index: src/lithium-allocator.cc |
=================================================================== |
--- src/lithium-allocator.cc (revision 10367) |
+++ src/lithium-allocator.cc (working copy) |
@@ -49,13 +49,13 @@ |
#define DEFINE_OPERAND_CACHE(name, type) \ |
name name::cache[name::kNumCachedOperands]; \ |
- void name::SetupCache() { \ |
+ void name::SetUpCache() { \ |
for (int i = 0; i < kNumCachedOperands; i++) { \ |
cache[i].ConvertTo(type, i); \ |
} \ |
} \ |
static bool name##_initialize() { \ |
- name::SetupCache(); \ |
+ name::SetUpCache(); \ |
return true; \ |
} \ |
static bool name##_cache_initialized = name##_initialize(); |