summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2017-07-18 22:11:01 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2017-07-18 22:11:01 +0000
commit0b89845991c079f935db388955fbc9535e98da68 (patch)
tree2cb62efb1e3a9fe43f7a6c7eca4077ce29e78d33 /include
parenta41a4c6dda241329eb2e94330dbb0c2ce870cd14 (diff)
Object: rename parameter from DLLName to ImportName
When I originally wrote this code, I neglected the fact that the import library may be created for executables. This name is not the name of the DLL, but rather the name for the imported module. It will be embedded into the IAT/ILT reference. Rename it to make it more obvious. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308384 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Object/COFFImportFile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Object/COFFImportFile.h b/include/llvm/Object/COFFImportFile.h
index 060f965233e1..8e215b565fc4 100644
--- a/include/llvm/Object/COFFImportFile.h
+++ b/include/llvm/Object/COFFImportFile.h
@@ -95,7 +95,7 @@ struct COFFShortExport {
}
};
-std::error_code writeImportLibrary(StringRef DLLName,
+std::error_code writeImportLibrary(StringRef ImportName,
StringRef Path,
ArrayRef<COFFShortExport> Exports,
COFF::MachineTypes Machine);