diff options
Diffstat (limited to 'compiler/driver/compiler_options_map-inl.h')
-rw-r--r-- | compiler/driver/compiler_options_map-inl.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/driver/compiler_options_map-inl.h b/compiler/driver/compiler_options_map-inl.h index 9914d81122..d4a582fb35 100644 --- a/compiler/driver/compiler_options_map-inl.h +++ b/compiler/driver/compiler_options_map-inl.h @@ -43,9 +43,6 @@ inline bool ReadCompilerOptions(Base& map, CompilerOptions* options, std::string } options->SetCompilerFilter(compiler_filter); } - if (map.Exists(Base::PIC)) { - options->compile_pic_ = true; - } map.AssignIfExists(Base::HugeMethodMaxThreshold, &options->huge_method_threshold_); map.AssignIfExists(Base::LargeMethodMaxThreshold, &options->large_method_threshold_); map.AssignIfExists(Base::SmallMethodMaxThreshold, &options->small_method_threshold_); @@ -109,9 +106,6 @@ inline void AddCompilerOptionsArgumentParserOptions(Builder& b) { .template WithType<std::string>() .IntoKey(Map::CompilerFilter) - .Define("--compile-pic") - .IntoKey(Map::PIC) - .Define("--huge-method-max=_") .template WithType<unsigned int>() .IntoKey(Map::HugeMethodMaxThreshold) |