1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Change interface to use correct typedef so it will always compile.

llvm-svn: 16281
This commit is contained in:
Reid Spencer 2004-09-11 04:22:58 +00:00
parent 9531457813
commit 378bdcd409

View File

@ -332,7 +332,7 @@ Module* llvm::AnalyzeBytecodeBuffer(
}
bool llvm::GetBytecodeDependentLibraries(const std::string &fname,
std::vector<std::string>& deplibs) {
Module::LibraryListType& deplibs) {
try {
std::auto_ptr<ModuleProvider> AMP( getBytecodeModuleProvider(fname));
Module* M = AMP->releaseModule();