diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-01 20:11:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-01 20:11:19 +0000 |
commit | 1d87bcf4909b06dcd86320722653341f08b8b396 (patch) | |
tree | c96a6176090b950f14ac44061b68f243a1920fe3 /lib/Bytecode/Reader/ConstantReader.cpp | |
parent | cfe26c930ae691ff3012736555846c45087e1a9e (diff) |
Convert more code to use new style casts
Eliminate old style casts from value.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ConstantReader.cpp')
-rw-r--r-- | lib/Bytecode/Reader/ConstantReader.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Bytecode/Reader/ConstantReader.cpp b/lib/Bytecode/Reader/ConstantReader.cpp index 67cfff7b97..aaecedddfa 100644 --- a/lib/Bytecode/Reader/ConstantReader.cpp +++ b/lib/Bytecode/Reader/ConstantReader.cpp @@ -241,8 +241,8 @@ bool BytecodeParser::parseConstPoolValue(const uchar *&Buf, unsigned Slot; if (read_vbr(Buf, EndBuf, Slot)) return failure(true); Value *V = getValue(AT->getElementType(), Slot, false); - if (!V || !V->isConstant()) return failure(true); - Elements.push_back((ConstPoolVal*)V); + if (!V || !isa<ConstPoolVal>(V)) return failure(true); + Elements.push_back(cast<ConstPoolVal>(V)); } V = ConstPoolArray::get(AT, Elements); break; @@ -257,9 +257,9 @@ bool BytecodeParser::parseConstPoolValue(const uchar *&Buf, unsigned Slot; if (read_vbr(Buf, EndBuf, Slot)) return failure(true); Value *V = getValue(ET[i], Slot, false); - if (!V || !V->isConstant()) + if (!V || !isa<ConstPoolVal>(V)) return failure(true); - Elements.push_back((ConstPoolVal*)V); + Elements.push_back(cast<ConstPoolVal>(V)); } V = ConstPoolStruct::get(ST, Elements); |