summaryrefslogtreecommitdiffstats
path: root/cmdline
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2017-01-17 13:20:55 +0000
committerNarayan Kamath <narayan@google.com>2017-01-17 17:05:12 +0000
commit9320675cb21a53b3dd59d80d440a96e04c84f28d (patch)
tree4ed1f60e2d0a39a554e1f7b38d0adbf7beb8282b /cmdline
parent8bd59a0fd46db83616785168231e09fb95ed2ead (diff)
downloadandroid_art-9320675cb21a53b3dd59d80d440a96e04c84f28d.tar.gz
android_art-9320675cb21a53b3dd59d80d440a96e04c84f28d.tar.bz2
android_art-9320675cb21a53b3dd59d80d440a96e04c84f28d.zip
MethodHandles: Remove experimental flag.
Runtime::IsMethodHandlesEnabled now always returns true. This change also removes the (now unnecessary) run scripts for method handle tests. Note that the --experimental=method-handles flag is left in place for the test build steps (etc/default-build) because it's still a convenient way to supply arguments to jack / smali. Test: make test-art-host Change-Id: I8475c7b8ac2615ac382a06ce54be39dce3cc7713
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/cmdline_types.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmdline/cmdline_types.h b/cmdline/cmdline_types.h
index e41d9bde59..28c009edf0 100644
--- a/cmdline/cmdline_types.h
+++ b/cmdline/cmdline_types.h
@@ -770,8 +770,6 @@ struct CmdlineType<ExperimentalFlags> : CmdlineTypeParser<ExperimentalFlags> {
existing = existing | ExperimentalFlags::kAgents;
} else if (option == "runtime-plugins") {
existing = existing | ExperimentalFlags::kRuntimePlugins;
- } else if (option == "method-handles") {
- existing = existing | ExperimentalFlags::kMethodHandles;
} else {
return Result::Failure(std::string("Unknown option '") + option + "'");
}