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

Unified Diff: runtime/vm/il_printer.cc

Issue 475563002: Inline Int32x4 constructor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/il_printer.cc
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index 1040f565e893f374716fa45e665feec937d3b5de..fcfe8835bb7775620c592b756bf1f19b23cd1f62 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -800,6 +800,19 @@ void Float64x2OneArgInstr::PrintOperandsTo(BufferFormatter* f) const {
}
+void Int32x4ConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Int32x4(");
+ value0()->PrintTo(f);
+ f->Print(", ");
+ value1()->PrintTo(f);
+ f->Print(", ");
+ value2()->PrintTo(f);
+ f->Print(", ");
+ value3()->PrintTo(f);
+ f->Print(")");
+}
+
+
void Int32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
f->Print("Int32x4.bool(");
value0()->PrintTo(f);

Powered by Google App Engine
This is Rietveld 408576698