| Index: tests/language/deopt_inlined_function_lazy_test.dart
|
| diff --git a/tests/language/deopt_inlined_function_lazy_test.dart b/tests/language/deopt_inlined_function_lazy_test.dart
|
| index dcb48d2dd707774c707c783cffb81de24a280b94..3912f39acd0431c8dd0e7fb43ec0b3c01f7ef63b 100644
|
| --- a/tests/language/deopt_inlined_function_lazy_test.dart
|
| +++ b/tests/language/deopt_inlined_function_lazy_test.dart
|
| @@ -9,7 +9,9 @@ import "package:expect/expect.dart";
|
| call_native(x) {
|
| // Wrap in try to avoid inlining.
|
| // Use a large int so the intrinsifier does not fire.
|
| - try { return x + 12342353257893275483274832; } finally { }
|
| + try {
|
| + return x + 12342353257893275483274832;
|
| + } finally {}
|
| }
|
|
|
| bar(x) {
|
|
|