[llvm-commits] CVS: llvm/include/llvm/Bytecode/Reader.h
Reid Spencer
reid at x10sys.com
Fri Sep 10 21:29:24 PDT 2004
Changes in directory llvm/include/llvm/Bytecode:
Reader.h updated: 1.18 -> 1.19
---
Log message:
Correct the interface of a function to use the correct typedef for an
argument so that it will always compile.
---
Diffs of the changes: (+2 -2)
Index: llvm/include/llvm/Bytecode/Reader.h
diff -u llvm/include/llvm/Bytecode/Reader.h:1.18 llvm/include/llvm/Bytecode/Reader.h:1.19
--- llvm/include/llvm/Bytecode/Reader.h:1.18 Tue Aug 24 17:49:07 2004
+++ llvm/include/llvm/Bytecode/Reader.h Fri Sep 10 23:29:13 2004
@@ -20,8 +20,8 @@
#define LLVM_BYTECODE_READER_H
#include "llvm/ModuleProvider.h"
+#include "llvm/Module.h"
#include <string>
-#include <vector>
namespace llvm {
@@ -60,7 +60,7 @@
/// @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<std::string>& 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
More information about the llvm-commits
mailing list