diff options
author | Francesco Petrogalli <francesco.petrogalli@arm.com> | 2019-11-14 04:29:07 +0000 |
---|---|---|
committer | Francesco Petrogalli <francesco.petrogalli@arm.com> | 2019-11-14 04:36:45 +0000 |
commit | 91c5928c3623bb4eaaf6fc9ea031866cb87fe19e (patch) | |
tree | 495f7c60f33006ad6197e8e28a795a835b5034b6 | |
parent | 000ff301e74b216c23ee60344977b2b6692ac70c (diff) | |
download | bcm5719-llvm-91c5928c3623bb4eaaf6fc9ea031866cb87fe19e.tar.gz bcm5719-llvm-91c5928c3623bb4eaaf6fc9ea031866cb87fe19e.zip |
[ModuleUtils] Clean up header file. [NFC]
Summary:
1. Remove unused forward declaration.
2. Remove unnecessary `\defgroup` in docygen documentation.
Subscribers: llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D70218
-rw-r--r-- | llvm/include/llvm/Transforms/Utils/ModuleUtils.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/include/llvm/Transforms/Utils/ModuleUtils.h b/llvm/include/llvm/Transforms/Utils/ModuleUtils.h index db6409ac078..c2da86406e7 100644 --- a/llvm/include/llvm/Transforms/Utils/ModuleUtils.h +++ b/llvm/include/llvm/Transforms/Utils/ModuleUtils.h @@ -109,23 +109,13 @@ void filterDeadComdatFunctions( /// unique identifier for this module, so we return the empty string. std::string getUniqueModuleId(Module *M); -class TargetLibraryInfo; class CallInst; namespace VFABI { - -/// \defgroup Vector Function ABI (VABI) Module functions. -/// -/// Utility functions for VFABI data that can modify the module. -/// -/// @{ /// Overwrite the Vector Function ABI variants attribute with the names provide /// in \p VariantMappings. void setVectorVariantNames(CallInst *CI, const SmallVector<std::string, 8> &VariantMappings); - -/// @} } // End VFABI namespace - } // End llvm namespace #endif // LLVM_TRANSFORMS_UTILS_MODULEUTILS_H |