diff options
author | Erich Keane <erich.keane@intel.com> | 2018-02-08 20:04:22 +0000 |
---|---|---|
committer | Erich Keane <erich.keane@intel.com> | 2018-02-08 20:04:22 +0000 |
commit | 30994d24489d9e7ecd6d02d25d181f5da10a182c (patch) | |
tree | f89d85428cc14ed8324f9396ecc8b865c63ba84f /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | e6503d87dac9af64d0f9eeb4e647af6762078a7d (diff) | |
download | bcm5719-llvm-30994d24489d9e7ecd6d02d25d181f5da10a182c.tar.gz bcm5719-llvm-30994d24489d9e7ecd6d02d25d181f5da10a182c.zip |
Fix improper indentation issue in CodeGenModule [NFC]
llvm-svn: 324644
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 9e42aa2750f..7a93123a549 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -1264,8 +1264,8 @@ void CodeGenModule::setNonAliasAttributes(const Decl *D, if (auto *F = dyn_cast<llvm::Function>(GO)) { if (auto *SA = D->getAttr<PragmaClangTextSectionAttr>()) - if (!D->getAttr<SectionAttr>()) - F->addFnAttr("implicit-section-name", SA->getName()); + if (!D->getAttr<SectionAttr>()) + F->addFnAttr("implicit-section-name", SA->getName()); } if (const SectionAttr *SA = D->getAttr<SectionAttr>()) |