diff options
author | Chris Lattner <sabre@nondot.org> | 2007-03-29 18:58:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-03-29 18:58:08 +0000 |
commit | f735f7b3ac424bd701af2da2e3d4b69fbcb2b203 (patch) | |
tree | 9ea0e37e7fde3639627a01ed022d85b1e31d852f /lib/Bytecode/Reader/Reader.cpp | |
parent | cb2df95c88f6bb819e8a3d9f9598c687cdf334a1 (diff) |
the bytecode reader supports dematerializeFunction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35475 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/Reader.cpp')
-rw-r--r-- | lib/Bytecode/Reader/Reader.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Bytecode/Reader/Reader.cpp b/lib/Bytecode/Reader/Reader.cpp index cb798df9e1..f0f6597d85 100644 --- a/lib/Bytecode/Reader/Reader.cpp +++ b/lib/Bytecode/Reader/Reader.cpp @@ -1636,8 +1636,6 @@ bool BytecodeReader::ParseFunction(Function* Func, std::string* ErrMsg) { BlockEnd = Fi->second.EndBuf; assert(Fi->first == Func && "Found wrong function?"); - LazyFunctionLoadMap.erase(Fi); - this->ParseFunctionBody(Func); return false; } @@ -1668,7 +1666,6 @@ bool BytecodeReader::ParseAllFunctionBodies(std::string* ErrMsg) { ParseFunctionBody(Func); ++Fi; } - LazyFunctionLoadMap.clear(); return false; } |