forked from OSchip/llvm-project
Correct the interface of a function to use the correct typedef for an
argument so that it will always compile. llvm-svn: 16284
This commit is contained in:
parent
9cfa81662f
commit
92475489e7
|
@ -20,8 +20,8 @@
|
||||||
#define LLVM_BYTECODE_READER_H
|
#define LLVM_BYTECODE_READER_H
|
||||||
|
|
||||||
#include "llvm/ModuleProvider.h"
|
#include "llvm/ModuleProvider.h"
|
||||||
|
#include "llvm/Module.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ Module* ParseBytecodeBuffer(const unsigned char *Buffer,
|
||||||
/// @returns true on success, false otherwise
|
/// @returns true on success, false otherwise
|
||||||
/// @brief Get the list of dependent libraries from a bytecode file.
|
/// @brief Get the list of dependent libraries from a bytecode file.
|
||||||
bool GetBytecodeDependentLibraries(const std::string &fileName,
|
bool GetBytecodeDependentLibraries(const std::string &fileName,
|
||||||
std::vector<std::string>& deplibs);
|
Module::LibraryListType& deplibs);
|
||||||
|
|
||||||
/// Read bytecode files from the specfied archive (.a) file, convert them
|
/// Read bytecode files from the specfied archive (.a) file, convert them
|
||||||
/// to Module* and provide them in the \p Objects argument. If an error
|
/// to Module* and provide them in the \p Objects argument. If an error
|
||||||
|
|
Loading…
Reference in New Issue