Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: src/compiler/js-type-feedback.cc

Issue 1191243003: [turbofan] Factor out the function specific part from the frame state operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Tweaks Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/js-inlining.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-type-feedback.cc
diff --git a/src/compiler/js-type-feedback.cc b/src/compiler/js-type-feedback.cc
index 193feb61dedffdbfd945003b8ba63fc058da769b..22ebf480c76f3191ccab90f397ae4be9c6abfdd6 100644
--- a/src/compiler/js-type-feedback.cc
+++ b/src/compiler/js-type-feedback.cc
@@ -362,7 +362,7 @@ Node* JSTypeFeedbackSpecializer::GetFrameStateBefore(Node* node) {
if (count == 2) {
Node* frame_state = NodeProperties::GetFrameStateInput(node, 1);
if (frame_state->opcode() == IrOpcode::kFrameState) {
- BailoutId id = OpParameter<FrameStateCallInfo>(node).bailout_id();
+ BailoutId id = OpParameter<FrameStateInfo>(node).bailout_id();
if (id != BailoutId::None()) return frame_state;
}
}
« no previous file with comments | « src/compiler/js-inlining.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698