summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorRuslan Baratov <ruslan_baratov@yahoo.com>2017-03-28 06:06:05 (GMT)
committerBrad King <brad.king@kitware.com>2017-03-30 14:16:30 (GMT)
commita75757004bda0ff32a152a0d9d6379c02b1338ce (patch)
treecde26bb7f143fbd3358c7b7421070fbc0f7744e3 /Source/cmLocalGenerator.cxx
parente05835c35b5d31f31e1a55baf415c075b24a27ad (diff)
downloadCMake-a75757004bda0ff32a152a0d9d6379c02b1338ce.zip
CMake-a75757004bda0ff32a152a0d9d6379c02b1338ce.tar.gz
CMake-a75757004bda0ff32a152a0d9d6379c02b1338ce.tar.bz2
Refactoring: s,GetFeatureAsBool,IsIPOEnabled,
Method 'GetFeatureAsBool' is used only with 'INTERPROCEDURAL_OPTIMIZATION' feature. Substituting 'GetFeatureAsBool' with 'IsIPOEnabled'.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 82bf0b9..9333ed7 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -1052,7 +1052,7 @@ void cmLocalGenerator::GetTargetCompileFlags(cmGeneratorTarget* target,
// Add language-specific flags.
this->AddLanguageFlags(flags, lang, config);
- if (target->GetFeatureAsBool("INTERPROCEDURAL_OPTIMIZATION", config)) {
+ if (target->IsIPOEnabled(config)) {
this->AppendFeatureOptions(flags, lang, "IPO");
}