From 9cab9e51bb0b08ff236aed3f9636a82b1c572ad0 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 11 Sep 2004 04:29:13 +0000 Subject: [PATCH] Correct the interface of a function to use the correct typedef for an argument so that it will always compile. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16284 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Bytecode/Reader.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Bytecode/Reader.h b/include/llvm/Bytecode/Reader.h index a28c0e5fd7a..4b9f802d384 100644 --- a/include/llvm/Bytecode/Reader.h +++ b/include/llvm/Bytecode/Reader.h @@ -20,8 +20,8 @@ #define LLVM_BYTECODE_READER_H #include "llvm/ModuleProvider.h" +#include "llvm/Module.h" #include -#include namespace llvm { @@ -60,7 +60,7 @@ Module* ParseBytecodeBuffer(const unsigned char *Buffer, /// @returns true on success, false otherwise /// @brief Get the list of dependent libraries from a bytecode file. bool GetBytecodeDependentLibraries(const std::string &fileName, - std::vector& deplibs); + Module::LibraryListType& deplibs); /// Read bytecode files from the specfied archive (.a) file, convert them /// to Module* and provide them in the \p Objects argument. If an error