diff options
author | Vladimir Marko <vmarko@google.com> | 2019-02-05 15:05:10 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2019-02-06 14:05:12 +0000 |
commit | 2ef01100bb56b3f8ab5fbc886a7066d721290d74 (patch) | |
tree | a60e1265e2b1e733832047417e93a9c3ae1e6165 /compiler/driver/compiler_options.h | |
parent | eb37ba594146338bf7e7e2bf3769d08046fb263f (diff) |
Replace StringPiece with std::string_view in HashSet.
Update HashSet comment and related code. Also remove dead
CompilerOptions declarations with StringPiece parameters.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 123750182
Change-Id: I4a39d0e8e0392a414129369c5b304ec4813e9ed5
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index bd12bf7dda..fccd9ca26e 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -361,13 +361,6 @@ class CompilerOptions final { private: bool ParseDumpInitFailures(const std::string& option, std::string* error_msg); - void ParseDumpCfgPasses(const StringPiece& option, UsageFn Usage); - void ParseInlineMaxCodeUnits(const StringPiece& option, UsageFn Usage); - void ParseNumDexMethods(const StringPiece& option, UsageFn Usage); - void ParseTinyMethodMax(const StringPiece& option, UsageFn Usage); - void ParseSmallMethodMax(const StringPiece& option, UsageFn Usage); - void ParseLargeMethodMax(const StringPiece& option, UsageFn Usage); - void ParseHugeMethodMax(const StringPiece& option, UsageFn Usage); bool ParseRegisterAllocationStrategy(const std::string& option, std::string* error_msg); CompilerFilter::Filter compiler_filter_; |