diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-26 20:59:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-26 20:59:02 +0000 |
commit | 277800a6435e477fc47fa14cb1e0252f3a95c10e (patch) | |
tree | 9a7a8c40cf1646e25b8ad2fb771ee9418edef04b /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 64fc3c68e5505d6a958eb6a5c33c2bf2863e5d64 (diff) | |
download | bcm5719-llvm-277800a6435e477fc47fa14cb1e0252f3a95c10e.tar.gz bcm5719-llvm-277800a6435e477fc47fa14cb1e0252f3a95c10e.zip |
Make a major API change to BitstreamReader: split all the reading
state out of the BitstreamReader class into a BitstreamCursor class.
Doing this allows the client to have multiple cursors into the same
file, each with potentially different live block stacks and
abbreviation records.
llvm-svn: 70157
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 8079acddb06..fe20f725878 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -1346,7 +1346,8 @@ bool BitcodeReader::ParseBitcode() { if (SkipBitcodeWrapperHeader(BufPtr, BufEnd)) return Error("Invalid bitcode wrapper header"); - Stream.init(BufPtr, BufEnd); + StreamFile.init(BufPtr, BufEnd); + Stream.init(StreamFile); // Sniff for the signature. if (Stream.Read(8) != 'B' || |