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
This commit is contained in:
Chris Lattner 2003-09-26 14:44:52 +00:00
parent aecbd278fe
commit b0b7c0d28c

View File

@ -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;
}
}