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

Unified Diff: runtime/vm/locations.cc

Issue 10698153: Change comparison-to-branch fusion to actually remove comparison from the graph. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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
« runtime/vm/flow_graph_optimizer.cc ('K') | « runtime/vm/locations.h ('k') | no next file » | 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 7447760c5b180d9c02cd4e3dbc27b961adf6ebf5..6a450d5b2248cfdac9ebf9668c7a2df4bb95c247 100644
--- a/runtime/vm/locations.cc
+++ b/runtime/vm/locations.cc
@@ -11,12 +11,10 @@ namespace dart {
LocationSummary* LocationSummary::Make(intptr_t input_count,
Location out,
- ContainsCall contains_call,
- ContainsBranch contains_branch) {
+ ContainsCall contains_call) {
LocationSummary* summary = new LocationSummary(input_count,
0,
- contains_call,
- contains_branch);
+ contains_call);
for (intptr_t i = 0; i < input_count; i++) {
summary->set_in(i, Location::RequiresRegister());
}
« runtime/vm/flow_graph_optimizer.cc ('K') | « runtime/vm/locations.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698