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

Unified Diff: runtime/vm/il_printer.cc

Issue 14872002: Improve load forwarding: (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/il_printer.cc
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index 950ef691ea01f2c5d8aba1f949276fe2be02493f..406c445f2292ca0fa6021c5905f08c7472168386 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -514,7 +514,7 @@ void CreateClosureInstr::PrintOperandsTo(BufferFormatter* f) const {
void LoadFieldInstr::PrintOperandsTo(BufferFormatter* f) const {
- value()->PrintTo(f);
+ instance()->PrintTo(f);
f->Print(", %"Pd, offset_in_bytes());
if (field_name_ != NULL) {

Powered by Google App Engine
This is Rietveld 408576698