Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 074e4a20b735a8f9b0aaac355bb6129653089889..b456e98894344ac9be835d70e5a2890c447b047e 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -174,8 +174,8 @@ void CompilationInfo::Initialize(Isolate* isolate, |
if (!shared_info().is_null() && shared_info()->is_compiled()) { |
// We should initialize the CompilationInfo feedback vector from the |
// passed in shared info, rather than creating a new one. |
- feedback_vector_ = Handle<FixedArray>(shared_info()->feedback_vector(), |
- isolate); |
+ feedback_vector_ = |
+ Handle<TypeFeedbackVector>(shared_info()->feedback_vector(), isolate); |
} |
} |