diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2016-03-21 17:10:24 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2016-03-21 17:39:20 +0000 |
commit | 3c94f0945ed596ceee39783fa075f013b65e80a1 (patch) | |
tree | c10b5808a5d7157371c2750823e6a168c73aa231 /compiler/driver/compiler_options.h | |
parent | 162629ee8ac0fee2df0c0cdec27dff34bc6f0062 (diff) |
Remove Quick from tree.
So long, old friend.
Change-Id: I0241c798a34b92bf994fed83888da67d6e7f1891
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 10 |
1 files changed, 0 insertions, 10 deletions
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 <vector> #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<std::string>* 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_; |