Skip to content

Commit

Permalink
Remove unused members and constructor arguments.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181096 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed May 4, 2013
1 parent b00b4be commit ae8f1f3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 20 deletions.
11 changes: 3 additions & 8 deletions include/llvm/Linker.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,14 @@ class Linker {
/// Construct the Linker with an empty module which will be given the
/// name \p progname. \p progname will also be used for error messages.
/// @brief Construct with empty module
Linker(StringRef progname, ///< name of tool running linker
StringRef modulename, ///< name of linker's end-result module
LLVMContext &C, ///< Context for global info
unsigned Flags = 0 ///< ControlFlags (one or more |'d together)
Linker(StringRef modulename, ///< name of linker's end-result module
LLVMContext &C ///< Context for global info
);

/// Construct the Linker with a previously defined module, \p aModule. Use
/// \p progname for the name of the program in error messages.
/// @brief Construct with existing module
Linker(StringRef progname, Module* aModule, unsigned Flags = 0);
Linker(Module* aModule);

/// Destruct the Linker.
/// @brief Destructor
Expand Down Expand Up @@ -115,9 +113,6 @@ class Linker {
private:
LLVMContext& Context; ///< The context for global information
Module* Composite; ///< The composite module linked together
unsigned Flags; ///< Flags to control optional behavior.
std::string Error; ///< Text of error that occurred.
std::string ProgramName; ///< Name of the program being linked
/// @}

};
Expand Down
16 changes: 5 additions & 11 deletions lib/Linker/Linker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,14 @@
#include "llvm/Support/system_error.h"
using namespace llvm;

Linker::Linker(StringRef progname, StringRef modname,
LLVMContext& C, unsigned flags):
Linker::Linker(StringRef modname,
LLVMContext& C):
Context(C),
Composite(new Module(modname, C)),
Flags(flags),
Error(),
ProgramName(progname) { }
Composite(new Module(modname, C)) { }

Linker::Linker(StringRef progname, Module* aModule, unsigned flags) :
Linker::Linker(Module* aModule) :
Context(aModule->getContext()),
Composite(aModule),
Flags(flags),
Error(),
ProgramName(progname) { }
Composite(aModule) { }

Linker::~Linker() {
delete Composite;
Expand Down
2 changes: 1 addition & 1 deletion tools/lto/LTOCodeGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const char* LTOCodeGenerator::getVersionString() {

LTOCodeGenerator::LTOCodeGenerator()
: _context(getGlobalContext()),
_linker("LinkTimeOptimizer", "ld-temp.o", _context), _target(NULL),
_linker("ld-temp.o", _context), _target(NULL),
_emitDwarfDebugInfo(false), _scopeRestrictionsDone(false),
_codeModel(LTO_CODEGEN_PIC_MODEL_DYNAMIC),
_nativeObjectFile(NULL) {
Expand Down

0 comments on commit ae8f1f3

Please sign in to comment.