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

Unified Diff: src/compiler/instruction.cc

Issue 1360603003: [arm64] Implement Float(32|64)(Min|Max) using fcsel. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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/compiler/instruction.cc
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc
index 1f6f7c9333e1d5e5feacd9a71e22b0f72d1dc0e1..5b8e7e820c67f2be373595d90abc292cac64fe69 100644
--- a/src/compiler/instruction.cc
+++ b/src/compiler/instruction.cc
@@ -272,6 +272,8 @@ std::ostream& operator<<(std::ostream& os, const FlagsMode& fm) {
return os << "branch";
case kFlags_set:
return os << "set";
+ case kFlags_select:
+ return os << "select";
}
UNREACHABLE();
return os;

Powered by Google App Engine
This is Rietveld 408576698