summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2018-04-20 19:07:57 +0000
committerEric Christopher <echristo@gmail.com>2018-04-20 19:07:57 +0000
commitaadbabc070427fd3eaa85bb406d3d1db4ea2bac7 (patch)
tree32c11303eba7e329b9a90d5c7cad726a5dd4bd9b /llvm/lib/CodeGen/AsmPrinter
parent7b17c9d05c0f8fd6be6bef48b3bf7ae4bd5f8d33 (diff)
downloadbcm5719-llvm-aadbabc070427fd3eaa85bb406d3d1db4ea2bac7.tar.gz
bcm5719-llvm-aadbabc070427fd3eaa85bb406d3d1db4ea2bac7.zip
Remove unused argument from emitModuleMetadata.
NFCI. llvm-svn: 330470
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index 1375662c8ae..f81d6d04d16 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1343,7 +1343,7 @@ bool AsmPrinter::doFinalization(Module &M) {
const TargetLoweringObjectFile &TLOF = getObjFileLowering();
- TLOF.emitModuleMetadata(*OutStreamer, M, TM);
+ TLOF.emitModuleMetadata(*OutStreamer, M);
if (TM.getTargetTriple().isOSBinFormatELF()) {
MachineModuleInfoELF &MMIELF = MMI->getObjFileInfo<MachineModuleInfoELF>();
OpenPOWER on IntegriCloud