| Index: src/profile-generator-inl.h
|
| diff --git a/src/profile-generator-inl.h b/src/profile-generator-inl.h
|
| index 5a984e5a585139e8efb0c360b8181246815658f4..f2feb73fc911ae7767a2dfc8a413fe6a0983473e 100644
|
| --- a/src/profile-generator-inl.h
|
| +++ b/src/profile-generator-inl.h
|
| @@ -56,8 +56,8 @@ CodeEntry::CodeEntry(Logger::LogEventsAndTags tag,
|
| line_number_(line_number),
|
| shared_id_(0),
|
| script_id_(v8::Script::kNoScriptId),
|
| - no_frame_ranges_(NULL) {
|
| -}
|
| + no_frame_ranges_(NULL),
|
| + bailout_reason_(kEmptyBailoutReason) { }
|
|
|
|
|
| bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) {
|
| @@ -75,8 +75,7 @@ ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry)
|
| entry_(entry),
|
| self_ticks_(0),
|
| children_(CodeEntriesMatch),
|
| - id_(tree->next_node_id()) {
|
| -}
|
| + id_(tree->next_node_id()) { }
|
|
|
|
|
| CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) {
|
|
|