X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FBytecode%2FArchive%2FArchive.cpp;fp=lib%2FBytecode%2FArchive%2FArchive.cpp;h=d299694383a0eb3d444b8919da921ff638d1cf4e;hb=f2e292ce58ca07d9bbe3cad75f8baa35bd85964a;hp=3bbc49dbe2a84a905e9ace3f05ddc3eb701357e7;hpb=403e4a4725af21c267d4189fe88bc48bd438b08c;p=oota-llvm.git diff --git a/lib/Bytecode/Archive/Archive.cpp b/lib/Bytecode/Archive/Archive.cpp index 3bbc49dbe2a..d299694383a 100644 --- a/lib/Bytecode/Archive/Archive.cpp +++ b/lib/Bytecode/Archive/Archive.cpp @@ -138,10 +138,10 @@ bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) { // Archive constructor - this is the only constructor that gets used for the // Archive class. Everything else (default,copy) is deprecated. This just // initializes and maps the file into memory, if requested. -Archive::Archive(const sys::Path& filename) +Archive::Archive(const sys::Path& filename, BCDecompressor_t *BCDC) : archPath(filename), members(), mapfile(0), base(0), symTab(), strtab(), - symTabSize(0), firstFileOffset(0), modules(), foreignST(0) -{ + symTabSize(0), firstFileOffset(0), modules(), foreignST(0), + Decompressor(BCDC) { } bool