diff options
author | Chris Lattner <sabre@nondot.org> | 2007-01-15 02:27:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-01-15 02:27:26 +0000 |
commit | 03c4953cdd0dc8f0d8379488c46fd65e96dd5b86 (patch) | |
tree | 39bdfdfe809d0c5e7b06cd2d7e19d1036f1c3d54 /llvm/lib/Bytecode/Writer/Writer.cpp | |
parent | c1be5ac420bb53ee5c6a220256d09c92877e5d9e (diff) | |
download | bcm5719-llvm-03c4953cdd0dc8f0d8379488c46fd65e96dd5b86.tar.gz bcm5719-llvm-03c4953cdd0dc8f0d8379488c46fd65e96dd5b86.zip |
rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger.
rename Type::getIntegralTypeMask to Type::getIntegerTypeMask.
This makes naming much more consistent. For example, there are now no longer any
instances of IntegerType that are not considered isInteger! :)
llvm-svn: 33225
Diffstat (limited to 'llvm/lib/Bytecode/Writer/Writer.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index dab25cad991..20135249390 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -292,7 +292,7 @@ void BytecodeWriter::outputType(const Type *T) { } void BytecodeWriter::outputConstant(const Constant *CPV) { - assert(((CPV->getType()->isPrimitiveType() || CPV->getType()->isIntegral()) || + assert(((CPV->getType()->isPrimitiveType() || CPV->getType()->isInteger()) || !CPV->isNullValue()) && "Shouldn't output null constants!"); // We must check for a ConstantExpr before switching by type because |