diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-02-06 20:50:27 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-02-06 20:50:27 +0000 |
commit | b7d8f21acd6adc4c6803a810b3605e5cd604aa50 (patch) | |
tree | 7bb04ba78106a3c866cab82ef903034cea2a5a39 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | abc7c5c5b6d0213899930711efb7c896bfa55832 (diff) | |
download | bcm5719-llvm-b7d8f21acd6adc4c6803a810b3605e5cd604aa50.tar.gz bcm5719-llvm-b7d8f21acd6adc4c6803a810b3605e5cd604aa50.zip |
[unwind removal] Remove the 'unwind' instruction parsing bits.
llvm-svn: 149897
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 33a9d14d1ad..ace3042eb62 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -2384,10 +2384,6 @@ bool BitcodeReader::ParseFunctionBody(Function *F) { InstructionList.push_back(I); break; } - case bitc::FUNC_CODE_INST_UNWIND: // UNWIND - I = new UnwindInst(Context); - InstructionList.push_back(I); - break; case bitc::FUNC_CODE_INST_UNREACHABLE: // UNREACHABLE I = new UnreachableInst(Context); InstructionList.push_back(I); |