aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Reader.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-09 20:41:16 +0000
committerChris Lattner <sabre@nondot.org>2003-10-09 20:41:16 +0000
commitc9456ca64c102516744deb4ba9b0790aea6b5c0a (patch)
treed555ac1d251e87a5d80eceaa5b74055fb2da749e /lib/Bytecode/Reader/Reader.cpp
parent1bc33a5227d6d4b9e1da6fbde1c8369921e3fba5 (diff)
Change getConstantValue to throw an exception on error, not return null
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8988 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/Reader.cpp')
-rw-r--r--lib/Bytecode/Reader/Reader.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/Reader.cpp b/lib/Bytecode/Reader/Reader.cpp
index c515c1575c..bf2b0118a3 100644
--- a/lib/Bytecode/Reader/Reader.cpp
+++ b/lib/Bytecode/Reader/Reader.cpp
@@ -164,7 +164,10 @@ BasicBlock *BytecodeParser::getBasicBlock(unsigned ID) {
///
Constant *BytecodeParser::getConstantValue(const Type *Ty, unsigned Slot) {
if (Value *V = getValue(Ty, Slot, false))
- return dyn_cast<Constant>(V); // If we already have the value parsed...
+ if (Constant *C = dyn_cast<Constant>(V))
+ return C; // If we already have the value parsed, just return it
+ else
+ throw std::string("Reference of a value is expected to be a constant!");
std::pair<const Type*, unsigned> Key(Ty, Slot);
GlobalRefsType::iterator I = GlobalRefs.lower_bound(Key);