diff options
author | Chris Lattner <sabre@nondot.org> | 2001-12-03 22:26:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-12-03 22:26:30 +0000 |
commit | 3462ae3ad7944394d0e9b82be222a43a26ca289a (patch) | |
tree | f9ecc5677deccb6e178948795e6e268023d98a0c /llvm/lib/Bytecode/Reader/InstructionReader.cpp | |
parent | bca18d7d96fd6d0df98019074e144f5b270d222c (diff) | |
download | bcm5719-llvm-3462ae3ad7944394d0e9b82be222a43a26ca289a.tar.gz bcm5719-llvm-3462ae3ad7944394d0e9b82be222a43a26ca289a.zip |
Rename ConstPoolVal -> Constant
Rename ConstPool* -> Constant*
Rename ConstPoolVals.h -> ConstantVals.h
llvm-svn: 1407
Diffstat (limited to 'llvm/lib/Bytecode/Reader/InstructionReader.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Reader/InstructionReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Reader/InstructionReader.cpp b/llvm/lib/Bytecode/Reader/InstructionReader.cpp index a80f656d0dd..5645e689f0d 100644 --- a/llvm/lib/Bytecode/Reader/InstructionReader.cpp +++ b/llvm/lib/Bytecode/Reader/InstructionReader.cpp @@ -213,7 +213,7 @@ bool BytecodeParser::ParseInstruction(const uchar *&Buf, const uchar *EndBuf, vector<unsigned> &args = *Raw.VarArgs; for (unsigned i = 0; i < args.size(); i += 2) - I->dest_push_back(cast<ConstPoolVal>(getValue(Raw.Ty, args[i])), + I->dest_push_back(cast<Constant>(getValue(Raw.Ty, args[i])), cast<BasicBlock>(getValue(Type::LabelTy, args[i+1]))); delete Raw.VarArgs; |