From: neis@chromium.org Date: Tue, 14 Oct 2014 12:41:34 +0000 (+0000) Subject: Add typing for Int32MulHigh. X-Git-Tag: upstream/4.7.83~6373 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=327d3ae870add336520ad2c99ad8c23f85205d77;p=platform%2Fupstream%2Fv8.git Add typing for Int32MulHigh. TBR=rossberg@chromium.org BUG= Review URL: https://codereview.chromium.org/656803003 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24602 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc index 9701b12..f50adbd 100644 --- a/src/compiler/typer.cc +++ b/src/compiler/typer.cc @@ -931,6 +931,11 @@ Bounds Typer::Visitor::TypeInt32Mul(Node* node) { } +Bounds Typer::Visitor::TypeInt32MulHigh(Node* node) { + return Bounds(Type::Integral32()); +} + + Bounds Typer::Visitor::TypeInt32Div(Node* node) { return Bounds(Type::Integral32()); }