From 35726bfcaa852fcbcbda03613b7f9a59763003bc Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 1 Sep 2011 00:50:20 +0000 Subject: [PATCH] Don't forget to add the landingpad and resume instructions to the InstructionList. This was found via a nightly build of 483.xalancbmk. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138923 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Bitcode/Reader/BitcodeReader.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index a33705d2dd5..148f74808a2 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/lib/Bitcode/Reader/BitcodeReader.cpp @@ -2514,6 +2514,7 @@ bool BitcodeReader::ParseFunctionBody(Function *F) { if (getValueTypePair(Record, Idx, NextValueNo, Val)) return Error("Invalid RESUME record"); I = ResumeInst::Create(Val); + InstructionList.push_back(I); break; } case bitc::FUNC_CODE_INST_UNWIND: // UNWIND @@ -2578,6 +2579,7 @@ bool BitcodeReader::ParseFunctionBody(Function *F) { } I = LP; + InstructionList.push_back(I); break; } -- 2.11.0