diff options
author | Craig Topper <craig.topper@gmail.com> | 2017-06-08 23:38:19 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2017-06-08 23:38:19 +0000 |
commit | 2aa4d39f5ead06b21fab87eae6138889aada9393 (patch) | |
tree | cde3501aa112990d73843e5560985df54f439c58 /llvm/lib/Transforms/IPO/ExtractGV.cpp | |
parent | 415ec9260f20d23ed9f269204cfd45a433b5e170 (diff) | |
download | bcm5719-llvm-2aa4d39f5ead06b21fab87eae6138889aada9393.tar.gz bcm5719-llvm-2aa4d39f5ead06b21fab87eae6138889aada9393.zip |
[ExtractGV] Fix the doxygen comment on the constructor and the class to refer to global values instead of functions. While there fix an 80 column violation. NFC
llvm-svn: 305030
Diffstat (limited to 'llvm/lib/Transforms/IPO/ExtractGV.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/ExtractGV.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/IPO/ExtractGV.cpp b/llvm/lib/Transforms/IPO/ExtractGV.cpp index 1c9a3222428..d1147f7d844 100644 --- a/llvm/lib/Transforms/IPO/ExtractGV.cpp +++ b/llvm/lib/Transforms/IPO/ExtractGV.cpp @@ -53,18 +53,18 @@ static void makeVisible(GlobalValue &GV, bool Delete) { } namespace { - /// @brief A pass to extract specific functions and their dependencies. + /// @brief A pass to extract specific global values and their dependencies. class GVExtractorPass : public ModulePass { SetVector<GlobalValue *> Named; bool deleteStuff; public: static char ID; // Pass identification, replacement for typeid - /// FunctionExtractorPass - If deleteFn is true, this pass deletes as the - /// specified function. Otherwise, it deletes as much of the module as - /// possible, except for the function specified. - /// - explicit GVExtractorPass(std::vector<GlobalValue*>& GVs, bool deleteS = true) + /// If deleteS is true, this pass deletes the specified global values. + /// Otherwise, it deletes as much of the module as possible, except for the + /// global values specified. + explicit GVExtractorPass(std::vector<GlobalValue*> &GVs, + bool deleteS = true) : ModulePass(ID), Named(GVs.begin(), GVs.end()), deleteStuff(deleteS) {} bool runOnModule(Module &M) override { |