| Index: tests/language/vm/optimized_stacktrace_test.dart
|
| diff --git a/tests/language/vm/optimized_stacktrace_test.dart b/tests/language/vm/optimized_stacktrace_test.dart
|
| index 3ad73f162130c8ff50b28a8c0e70378f2a669709..7683a01c64f2278a3777a8e9eecba33f59810d01 100644
|
| --- a/tests/language/vm/optimized_stacktrace_test.dart
|
| +++ b/tests/language/vm/optimized_stacktrace_test.dart
|
| @@ -27,7 +27,8 @@ foo(o, value) {
|
|
|
| const NeverInline = 'NeverInline';
|
|
|
| -@NeverInline baz(x, y, z) => z;
|
| +@NeverInline
|
| +baz(x, y, z) => z;
|
|
|
| bar(o) {
|
| var value = 0x100000000 + o.inc;
|
| @@ -39,4 +40,3 @@ main() {
|
| for (var i = 0; i < 100; i++) bar(o);
|
| bar(new A(100000, 1));
|
| }
|
| -
|
|
|