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

Unified Diff: runtime/vm/locations.h

Issue 12042014: Revert "Introduce InvokeMathCFunction that can be used to directly invoke mathematical function pro… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/intermediate_language_x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/locations.h
diff --git a/runtime/vm/locations.h b/runtime/vm/locations.h
index f8b7f6c471dcb8746b5f6574529ce0a6e8e58113..fcd9c810c607708d3f4a25bb8be604f667916361 100644
--- a/runtime/vm/locations.h
+++ b/runtime/vm/locations.h
@@ -418,7 +418,7 @@ class LocationSummary : public ZoneAllocated {
}
void set_in(intptr_t index, Location loc) {
- ASSERT(!always_calls() || loc.IsMachineRegister());
+ ASSERT(!always_calls() || loc.IsRegister());
input_locations_[index] = loc;
}
@@ -453,7 +453,7 @@ class LocationSummary : public ZoneAllocated {
}
void set_out(Location loc) {
- ASSERT(!always_calls() || (loc.IsMachineRegister() || loc.IsInvalid()));
+ ASSERT(!always_calls() || (loc.IsRegister() || loc.IsInvalid()));
output_location_ = loc;
}
« no previous file with comments | « runtime/vm/intermediate_language_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698