summaryrefslogtreecommitdiff
path: root/ELF/LTO.h
diff options
context:
space:
mode:
Diffstat (limited to 'ELF/LTO.h')
-rw-r--r--ELF/LTO.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ELF/LTO.h b/ELF/LTO.h
index 3cb763650e1cf..28afa0e83add3 100644
--- a/ELF/LTO.h
+++ b/ELF/LTO.h
@@ -43,12 +43,13 @@ public:
BitcodeCompiler();
~BitcodeCompiler();
- template <class ELFT> void add(BitcodeFile &F);
+ void add(BitcodeFile &F);
std::vector<InputFile *> compile();
private:
std::unique_ptr<llvm::lto::LTO> LTOObj;
std::vector<SmallString<0>> Buff;
+ std::vector<std::unique_ptr<MemoryBuffer>> Files;
};
}
}