From e21f1228653c3efc19472a445586e1a904fa810c Mon Sep 17 00:00:00 2001 From: Benedikt Meurer Date: Thu, 25 Jun 2015 11:22:08 +0200 Subject: [PATCH] [turbofan] Properly type %_IsDate intrinsic. R=svenpanne@chromium.org Review URL: https://codereview.chromium.org/1208003002. Cr-Commit-Position: refs/heads/master@{#29283} --- src/compiler/typer.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc index 69d95fb..3a77ec3 100644 --- a/src/compiler/typer.cc +++ b/src/compiler/typer.cc @@ -1535,6 +1535,7 @@ Bounds Typer::Visitor::TypeJSCallRuntime(Node* node) { case Runtime::kInlineIsSmi: case Runtime::kInlineIsNonNegativeSmi: case Runtime::kInlineIsArray: + case Runtime::kInlineIsDate: case Runtime::kInlineIsTypedArray: case Runtime::kInlineIsMinusZero: case Runtime::kInlineIsFunction: -- 2.7.4