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

Unified Diff: src/type-hints.cc

Issue 2684313003: Remove SIMD.js from V8. (Closed)
Patch Set: Rebase. Created 3 years, 10 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/type-hints.h ('k') | src/type-info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/type-hints.cc
diff --git a/src/type-hints.cc b/src/type-hints.cc
index 1ea7cbbb80f2dbc488d2b31d2bea5f27f926ff81..29a15c6e3c54c2a065039519e02cf09684bf7ec3 100644
--- a/src/type-hints.cc
+++ b/src/type-hints.cc
@@ -69,8 +69,6 @@ std::ostream& operator<<(std::ostream& os, ToBooleanHint hint) {
return os << "Symbol";
case ToBooleanHint::kHeapNumber:
return os << "HeapNumber";
- case ToBooleanHint::kSimdValue:
- return os << "SimdValue";
case ToBooleanHint::kAny:
return os << "Any";
case ToBooleanHint::kNeedsMap:
@@ -100,8 +98,6 @@ std::string ToString(ToBooleanHint hint) {
return "Symbol";
case ToBooleanHint::kHeapNumber:
return "HeapNumber";
- case ToBooleanHint::kSimdValue:
- return "SimdValue";
case ToBooleanHint::kAny:
return "Any";
case ToBooleanHint::kNeedsMap:
« no previous file with comments | « src/type-hints.h ('k') | src/type-info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698