aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Writer/InstructionWriter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-06 16:15:30 +0000
committerChris Lattner <sabre@nondot.org>2002-05-06 16:15:30 +0000
commit9b625030c8427a3bc56f5993c0b5b214c393042f (patch)
tree40bf688c425d93346f3f3a1119f4a9049682724e /lib/Bytecode/Writer/InstructionWriter.cpp
parentd44023ecb7a699e52f119bec0eb86830989ff35a (diff)
Replace all usages of Type::isPointerType with isa<PointerType>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2486 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/InstructionWriter.cpp')
-rw-r--r--lib/Bytecode/Writer/InstructionWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/InstructionWriter.cpp b/lib/Bytecode/Writer/InstructionWriter.cpp
index 2c1ce975bc..7ab953cf3c 100644
--- a/lib/Bytecode/Writer/InstructionWriter.cpp
+++ b/lib/Bytecode/Writer/InstructionWriter.cpp
@@ -198,7 +198,7 @@ void BytecodeWriter::processInstruction(const Instruction *I) {
break;
case Instruction::Store:
Ty = I->getOperand(1)->getType(); // Encode the pointer type...
- assert(Ty->isPointerType() && "Store to nonpointer type!?!?");
+ assert(isa<PointerType>(Ty) && "Store to nonpointer type!?!?");
break;
default: // Otherwise use the default behavior...
Ty = NumOperands ? I->getOperand(0)->getType() : I->getType();