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

Unified Diff: runtime/vm/locations.cc

Issue 10919008: Unbox phis that were proven to be of type Double. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: address Srdjan's comments Created 8 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
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/locations.cc
diff --git a/runtime/vm/locations.cc b/runtime/vm/locations.cc
index bffb807e1881c75cec57408b6fd171ff7f0aecde..078e86f8ee0753bd08d35ba691653f2c32d1a89a 100644
--- a/runtime/vm/locations.cc
+++ b/runtime/vm/locations.cc
@@ -77,6 +77,8 @@ const char* Location::Name() const {
void Location::PrintTo(BufferFormatter* f) const {
if (kind() == kStackSlot) {
f->Print("S%+d", stack_index());
+ } else if (kind() == kDoubleStackSlot) {
+ f->Print("DS%+d", stack_index());
} else {
f->Print("%s", Name());
}
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698