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

Unified Diff: runtime/vm/intermediate_language_ia32.cc

Issue 51653006: Track live instance and allocation counts for classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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_ia32.cc
diff --git a/runtime/vm/intermediate_language_ia32.cc b/runtime/vm/intermediate_language_ia32.cc
index 2c0cbcd0b6f4bc3aafc84a49f3bba5743584a4a3..0d9c2c5ac7502fb41403fa3288c8a5fbaf752b9b 100644
--- a/runtime/vm/intermediate_language_ia32.cc
+++ b/runtime/vm/intermediate_language_ia32.cc
@@ -2886,6 +2886,7 @@ LocationSummary* BoxFloat32x4Instr::MakeLocationSummary() const {
kNumTemps,
LocationSummary::kCallOnSlowPath);
summary->set_in(0, Location::RequiresFpuRegister());
+ summary->set_temp(0, Location::RequiresRegister());
Florian Schneider 2013/10/31 09:56:01 Where and why is temp(0) used?
Cutch 2013/10/31 11:20:02 This is left over from PS2
summary->set_out(Location::RequiresRegister());
return summary;
}

Powered by Google App Engine
This is Rietveld 408576698