Chromium Code Reviews

Unified Diff: src/compiler/mips/instruction-selector-mips.cc

Issue 668173002: Add Float64Round operator. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove comma at end of enumerator list. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/compiler/mips/instruction-selector-mips.cc
diff --git a/src/compiler/mips/instruction-selector-mips.cc b/src/compiler/mips/instruction-selector-mips.cc
index 5ad99307eea22a0d4af57f4fe8904009d8beeaef..336f4d12e692668e310a7f6caced62063a4cba17 100644
--- a/src/compiler/mips/instruction-selector-mips.cc
+++ b/src/compiler/mips/instruction-selector-mips.cc
@@ -647,6 +647,11 @@ void InstructionSelector::VisitFloat64LessThanOrEqual(Node* node) {
VisitFloat64Compare(this, node, &cont);
}
+
+// static
+SupportedOperators InstructionSelector::GetSupportedOperators() {
+ return kNoSupportedOperators;
+}
} // namespace compiler
} // namespace internal
} // namespace v8

Powered by Google App Engine