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

Unified Diff: src/hydrogen.cc

Issue 17444011: Fix to_boolean type feedback for unary and binary ops (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
Index: src/hydrogen.cc
diff --git a/src/hydrogen.cc b/src/hydrogen.cc
index 33557a29f2e77314f0730606c1a0af671648984c..2e09660999d6f11242eecdb51a0cf010063a6d11 100644
--- a/src/hydrogen.cc
+++ b/src/hydrogen.cc
@@ -8160,17 +8160,19 @@ bool HOptimizedGraphBuilder::TryInline(CallKind call_kind,
ClearInlinedTestContext();
delete target_state;
+ TestContext* test_context = TestContext::cast(ast_context());
+
// Forward to the real test context.
if (if_true->HasPredecessor()) {
entry->RegisterReturnTarget(if_true, zone());
if_true->SetJoinId(ast_id);
- HBasicBlock* true_target = TestContext::cast(ast_context())->if_true();
+ HBasicBlock* true_target = test_context->if_true();
if_true->Goto(true_target, function_state());
}
if (if_false->HasPredecessor()) {
entry->RegisterReturnTarget(if_false, zone());
if_false->SetJoinId(ast_id);
- HBasicBlock* false_target = TestContext::cast(ast_context())->if_false();
+ HBasicBlock* false_target = test_context->if_false();
if_false->Goto(false_target, function_state());
}
set_current_block(NULL);

Powered by Google App Engine
This is Rietveld 408576698