From 3c94f0945ed596ceee39783fa075f013b65e80a1 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 21 Mar 2016 17:10:24 +0000 Subject: Remove Quick from tree. So long, old friend. Change-Id: I0241c798a34b92bf994fed83888da67d6e7f1891 --- compiler/driver/compiler_options.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'compiler/driver/compiler_options.h') diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index 59698af459..11a4e06313 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -22,7 +22,6 @@ #include #include "base/macros.h" -#include "dex/pass_manager.h" #include "globals.h" #include "utils.h" @@ -239,10 +238,6 @@ class CompilerOptions FINAL { return init_failure_output_.get(); } - const PassManagerOptions* GetPassManagerOptions() const { - return &pass_manager_options_; - } - bool AbortOnHardVerifierFailure() const { return abort_on_hard_verifier_failure_; } @@ -267,10 +262,7 @@ class CompilerOptions FINAL { private: void ParseDumpInitFailures(const StringPiece& option, UsageFn Usage); - void ParsePassOptions(const StringPiece& option, UsageFn Usage); void ParseDumpCfgPasses(const StringPiece& option, UsageFn Usage); - void ParsePrintPasses(const StringPiece& option, UsageFn Usage); - void ParseDisablePasses(const StringPiece& option, UsageFn Usage); void ParseInlineMaxCodeUnits(const StringPiece& option, UsageFn Usage); void ParseInlineDepthLimit(const StringPiece& option, UsageFn Usage); void ParseNumDexMethods(const StringPiece& option, UsageFn Usage); @@ -307,8 +299,6 @@ class CompilerOptions FINAL { // Vector of methods to have verbose output enabled for. const std::vector* verbose_methods_; - PassManagerOptions pass_manager_options_; - // Abort compilation with an error if we find a class that fails verification with a hard // failure. bool abort_on_hard_verifier_failure_; -- cgit v1.2.3-59-g8ed1b