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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 13867006: Inline binary Float32x4 ops. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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: runtime/vm/intermediate_language.cc
diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
index 71acde1180d12518df5aaae90137afe57f7ed91c..d5e31ee18a98e4e7ba1f841943d9d960b9eec21b 100644
--- a/runtime/vm/intermediate_language.cc
+++ b/runtime/vm/intermediate_language.cc
@@ -1087,6 +1087,12 @@ Definition* BinaryDoubleOpInstr::Canonicalize(FlowGraphOptimizer* optimizer) {
}
+Definition* BinaryFloat32x4OpInstr::Canonicalize(
Vyacheslav Egorov (Google) 2013/04/15 11:09:35 This matches default behavior. No need ot override
Cutch 2013/04/15 13:34:56 Done.
+ FlowGraphOptimizer* optimizer) {
+ return this;
+}
+
+
Definition* BinarySmiOpInstr::Canonicalize(FlowGraphOptimizer* optimizer) {
Definition* result = NULL;

Powered by Google App Engine
This is Rietveld 408576698