From: Chris Lattner Date: Fri, 26 Sep 2003 14:44:52 +0000 (+0000) Subject: Just rethrow previous exception instead of making a new one X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b0b7c0d28c7422d01bffe7b8984333b5b883a539;p=oota-llvm.git Just rethrow previous exception instead of making a new one git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8718 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bytecode/Reader/Reader.cpp b/lib/Bytecode/Reader/Reader.cpp index 067b70b8062..c69e680be24 100644 --- a/lib/Bytecode/Reader/Reader.cpp +++ b/lib/Bytecode/Reader/Reader.cpp @@ -654,6 +654,6 @@ BytecodeParser::ParseBytecode(const unsigned char *Buf, unsigned Length, freeState(); // Must destroy handles before deleting module! delete TheModule; TheModule = 0; - throw Error; + throw; } }