| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/locations.h" | 5 #include "vm/locations.h" |
| 6 | 6 |
| 7 #include "vm/il_printer.h" | 7 #include "vm/il_printer.h" |
| 8 #include "vm/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
| 9 #include "vm/flow_graph_compiler.h" | 9 #include "vm/flow_graph_compiler.h" |
| 10 | 10 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 temp(i).PrintTo(f); | 105 temp(i).PrintTo(f); |
| 106 } | 106 } |
| 107 f->Print("]"); | 107 f->Print("]"); |
| 108 } | 108 } |
| 109 | 109 |
| 110 if (!out().IsInvalid()) { | 110 if (!out().IsInvalid()) { |
| 111 f->Print(" => "); | 111 f->Print(" => "); |
| 112 out().PrintTo(f); | 112 out().PrintTo(f); |
| 113 } | 113 } |
| 114 | 114 |
| 115 if (is_call()) f->Print(" C"); | 115 if (always_calls()) f->Print(" C"); |
| 116 } | 116 } |
| 117 | 117 |
| 118 } // namespace dart | 118 } // namespace dart |
| OLD | NEW |