From 9320675cb21a53b3dd59d80d440a96e04c84f28d Mon Sep 17 00:00:00 2001 From: Narayan Kamath Date: Tue, 17 Jan 2017 13:20:55 +0000 Subject: 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 --- cmdline/cmdline_types.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'cmdline') 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 : CmdlineTypeParser { 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 + "'"); } -- cgit v1.2.3