| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // TODO(jochen): Remove this after the setting is turned on globally. |
| 6 #define V8_IMMINENT_DEPRECATION_WARNINGS |
| 7 |
| 5 #include <limits> | 8 #include <limits> |
| 6 | 9 |
| 7 #include "src/compiler/change-lowering.h" | 10 #include "src/compiler/change-lowering.h" |
| 8 #include "src/compiler/control-builders.h" | 11 #include "src/compiler/control-builders.h" |
| 9 #include "src/compiler/js-graph.h" | 12 #include "src/compiler/js-graph.h" |
| 10 #include "src/compiler/node-properties.h" | 13 #include "src/compiler/node-properties.h" |
| 11 #include "src/compiler/pipeline.h" | 14 #include "src/compiler/pipeline.h" |
| 12 #include "src/compiler/select-lowering.h" | 15 #include "src/compiler/select-lowering.h" |
| 13 #include "src/compiler/simplified-lowering.h" | 16 #include "src/compiler/simplified-lowering.h" |
| 14 #include "src/compiler/typer.h" | 17 #include "src/compiler/typer.h" |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 Object* true_obj = t.heap()->true_value(); | 279 Object* true_obj = t.heap()->true_value(); |
| 277 CHECK_EQ(true_obj, result); | 280 CHECK_EQ(true_obj, result); |
| 278 } | 281 } |
| 279 | 282 |
| 280 { | 283 { |
| 281 Object* result = t.Call(0); | 284 Object* result = t.Call(0); |
| 282 Object* false_obj = t.heap()->false_value(); | 285 Object* false_obj = t.heap()->false_value(); |
| 283 CHECK_EQ(false_obj, result); | 286 CHECK_EQ(false_obj, result); |
| 284 } | 287 } |
| 285 } | 288 } |
| OLD | NEW |