Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | |
|
Florian Schneider
2014/12/10 15:21:54
Remove \n.
| |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 3 // 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. | 4 // BSD-style license that can be found in the LICENSE file. |
| 4 | 5 |
| 5 #include "vm/flow_graph_range_analysis.h" | 6 #include "vm/flow_graph_range_analysis.h" |
| 6 | 7 |
| 7 #include "vm/bit_vector.h" | 8 #include "vm/bit_vector.h" |
| 8 #include "vm/il_printer.h" | 9 #include "vm/il_printer.h" |
| 9 | 10 |
| 10 namespace dart { | 11 namespace dart { |
| (...skipping 3134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3145 } | 3146 } |
| 3146 } while (CanonicalizeMaxBoundary(&max) || | 3147 } while (CanonicalizeMaxBoundary(&max) || |
| 3147 CanonicalizeMinBoundary(&canonical_length)); | 3148 CanonicalizeMinBoundary(&canonical_length)); |
| 3148 | 3149 |
| 3149 // Failed to prove that maximum is bounded with array length. | 3150 // Failed to prove that maximum is bounded with array length. |
| 3150 return false; | 3151 return false; |
| 3151 } | 3152 } |
| 3152 | 3153 |
| 3153 | 3154 |
| 3154 } // namespace dart | 3155 } // namespace dart |
| OLD | NEW |