diff options
author | Chris Lattner <sabre@nondot.org> | 2007-05-06 09:28:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-05-06 09:28:33 +0000 |
commit | c1d5624d71f7534cfc1bd51b76ead9cea99d3e8d (patch) | |
tree | 25dfd54464e8e2231589e55b4edf5d416a947f03 /lib/Bytecode/Archive/ArchiveInternals.h | |
parent | 4cbc5485e0ce158a81930fdf44b119ce7e129e13 (diff) |
Switch this over to bitcode instead of bytecode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36866 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Archive/ArchiveInternals.h')
-rw-r--r-- | lib/Bytecode/Archive/ArchiveInternals.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Bytecode/Archive/ArchiveInternals.h b/lib/Bytecode/Archive/ArchiveInternals.h index 7a918a9653..4642f7a30a 100644 --- a/lib/Bytecode/Archive/ArchiveInternals.h +++ b/lib/Bytecode/Archive/ArchiveInternals.h @@ -14,7 +14,7 @@ #ifndef LIB_BYTECODE_ARCHIVEINTERNALS_H #define LIB_BYTECODE_ARCHIVEINTERNALS_H -#include "llvm/Bytecode/Archive.h" +#include "llvm/Bitcode/Archive.h" #include "llvm/System/TimeValue.h" #include "llvm/ADT/StringExtras.h" @@ -70,12 +70,11 @@ namespace llvm { // Get just the externally visible defined symbols from the bytecode bool GetBytecodeSymbols(const sys::Path& fName, std::vector<std::string>& symbols, - BCDecompressor_t *BCDC, std::string* ErrMsg); + std::string* ErrMsg); ModuleProvider* GetBytecodeSymbols(const unsigned char*Buffer,unsigned Length, const std::string& ModuleID, std::vector<std::string>& symbols, - BCDecompressor_t *BCDC, std::string* ErrMsg); } |