f822dfa3ea
This change introduces two new pragmas:
* `@pragma('vm:never-inline')`
* `@pragma('vm:prefer-inline')`
These replaces the old way of specifying AlwaysInline or NeverInline
annotations when the (now removed) --enable-inlining-annotations flag
was used.
Bug: https://github.com/dart-lang/sdk/issues/36571
Change-Id: Iee152c1d67abde8d58c58fa967449d36e77c8c93
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/110440
Commit-Queue: Teagan Strickland <sstrickl@google.com>
Reviewed-by: Samir Jindel <sjindel@google.com>
30 lines
699 B
Dart
30 lines
699 B
Dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
//
|
|
// VMOptions=--enable_asserts --optimization-counter-threshold=10 --no-background-compilation
|
|
|
|
import 'package:expect/expect.dart';
|
|
import 'regress_27671_other.dart';
|
|
|
|
@pragma('vm:prefer-inline')
|
|
bounce(x) {
|
|
for (int i = 0; i < 10; i++) {
|
|
check(f, x);
|
|
}
|
|
}
|
|
|
|
@pragma('vm:prefer-inline')
|
|
bool f(y) => y > 0;
|
|
|
|
main() {
|
|
for (int i = 0; i < 100; i++) {
|
|
bounce(1);
|
|
}
|
|
try {
|
|
bounce(-1);
|
|
} catch (e) {
|
|
Expect.isTrue(e.toString().contains('f(x) && true'));
|
|
}
|
|
}
|