Chromium Code Reviews| Index: src/compilation-cache.cc |
| =================================================================== |
| --- src/compilation-cache.cc (revision 4205) |
| +++ src/compilation-cache.cc (working copy) |
| @@ -220,9 +220,7 @@ |
| void CompilationSubCache::Clear() { |
| - for (int i = 0; i < generations_; i++) { |
| - tables_[i] = Heap::undefined_value(); |
| - } |
| + MemsetPointer(tables_, Heap::undefined_value(), generations_); |
| } |