Skip to content

Commit fa7376c

Browse files
committed
[DTLTO][ELF][COFF][MachO] Add archive support for DTLTO - Compilation fix.
1 parent 4171a33 commit fa7376c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/lib/DTLTO/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
add_llvm_component_library(LLVMDTLTO
2-
Dtlto.cpp
2+
DTLTO.cpp
33

44
LINK_COMPONENTS
55
Core

llvm/lib/LTO/LTO.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
735735

736736
Error LTO::add(std::unique_ptr<InputFile> InputPtr,
737737
ArrayRef<SymbolResolution> Res) {
738-
llvm::TimeTraceScope timeScope("LTO add input", Input->getName());
738+
llvm::TimeTraceScope timeScope("LTO add input", InputPtr->getName());
739739
assert(!CalledGetMaxTasks);
740740

741741
Expected<InputFile *> InputOrErr = dtlto::addInput(this, std::move(InputPtr));

0 commit comments

Comments
 (0)