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

Unified Diff: src/compiler/typer.cc

Issue 978123003: Merged INLINE_OPTIMIZED intrinsic type into INLINE. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed feedback. Created 5 years, 9 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/linkage.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index e11730e6e58a695f14608e7b247179d4e4e92bcb..c638535727f1c9593c001fb90e9333d2481dd1fa 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -1506,10 +1506,10 @@ Bounds Typer::Visitor::TypeJSCallRuntime(Node* node) {
case Runtime::kInlineIsFunction:
case Runtime::kInlineIsRegExp:
return Bounds(Type::None(zone()), Type::Boolean(zone()));
- case Runtime::kInlineOptimizedDoubleLo:
- case Runtime::kInlineOptimizedDoubleHi:
+ case Runtime::kInlineDoubleLo:
+ case Runtime::kInlineDoubleHi:
return Bounds(Type::None(zone()), Type::Signed32());
- case Runtime::kInlineOptimizedConstructDouble:
+ case Runtime::kInlineConstructDouble:
return Bounds(Type::None(zone()), Type::Number());
default:
break;
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698