summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTeresa Johnson <tejohnson@google.com>2015-12-18 19:28:59 +0000
committerTeresa Johnson <tejohnson@google.com>2015-12-18 19:28:59 +0000
commit18f59c52f2641562978412e7c336f9ca9fe991c9 (patch)
tree499e5d8f895029f965f1dc6cba77ea5b6540d13c /include
parent96e80fcbfd852a6bc6ed1a15c87e709ac1080dbc (diff)
Rename variables to reflect linker split (NFC)
Renamed variables to be more reflective of whether they are an instance of Linker, IRLinker or ModuleLinker. Also fix a stale comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256011 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/LTO/LTOCodeGenerator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/LTO/LTOCodeGenerator.h b/include/llvm/LTO/LTOCodeGenerator.h
index 8a79e6044f5..3820b211a38 100644
--- a/include/llvm/LTO/LTOCodeGenerator.h
+++ b/include/llvm/LTO/LTOCodeGenerator.h
@@ -171,7 +171,7 @@ private:
LLVMContext &Context;
std::unique_ptr<Module> MergedModule;
- std::unique_ptr<Linker> IRLinker;
+ std::unique_ptr<Linker> TheLinker;
std::unique_ptr<TargetMachine> TargetMach;
bool EmitDwarfDebugInfo = false;
bool ScopeRestrictionsDone = false;