| Index: dart/utils/compiler/build_helper.dart
|
| diff --git a/dart/utils/compiler/build_helper.dart b/dart/utils/compiler/build_helper.dart
|
| index 6821599be2391dbd4ca322476179aecac9c1aad4..0b4d29eca59e43fae3c312e51de7a984de86fca3 100644
|
| --- a/dart/utils/compiler/build_helper.dart
|
| +++ b/dart/utils/compiler/build_helper.dart
|
| @@ -96,6 +96,11 @@ List<String> buildScript(String name,
|
| // TODO(ahe): Remove this option.
|
| options = ' --heap_growth_rate=32$options';
|
|
|
| + // Tell the VM to don't bother inlining methods. So far it isn't
|
| + // paying off but the VM team is working on fixing that.
|
| + // TODO(ahe): Remove this option.
|
| + options = ' --no_use_inlining$options';
|
| +
|
| return [
|
| '''
|
| #!/bin/bash
|
|
|