Chromium Code Reviews| Index: src/heap-snapshot-generator.cc |
| diff --git a/src/heap-snapshot-generator.cc b/src/heap-snapshot-generator.cc |
| index f1bdc71cca03dc3cf1d0277d65a5f2997595f495..fe1c7febf29ec6d0b847fcbf7cc21a31bc448ade 100644 |
| --- a/src/heap-snapshot-generator.cc |
| +++ b/src/heap-snapshot-generator.cc |
| @@ -149,12 +149,13 @@ const char* HeapEntry::TypeAsString() { |
| case kArray: return "/array/"; |
| case kRegExp: return "/regexp/"; |
| case kHeapNumber: return "/number/"; |
| + case kSimdValue: |
| + return "/simd/"; |
|
rossberg
2015/07/02 13:35:43
Nit: consistent layout
bbudge
2015/07/06 23:59:04
Done (but this is git cl format)
|
| case kNative: return "/native/"; |
| case kSynthetic: return "/synthetic/"; |
| case kConsString: return "/concatenated string/"; |
| case kSlicedString: return "/sliced string/"; |
| case kSymbol: return "/symbol/"; |
| - case kSimdValue: return "/simd/"; |
| default: return "???"; |
| } |
| } |