diff --git a/llvm/lib/VMCore/Type.cpp b/llvm/lib/VMCore/Type.cpp index 4a53fcf6f835570b2f08db2f66437cde6238d28a..5dd91b3d07095537692d32d1fa2db778fcc3b104 100644 --- a/llvm/lib/VMCore/Type.cpp +++ b/llvm/lib/VMCore/Type.cpp @@ -1198,7 +1198,7 @@ static ManagedStatic > PointerTypes; PointerType *PointerType::get(const Type *ValueType, unsigned AddressSpace) { assert(ValueType && "Can't get a pointer to type!"); assert(ValueType != Type::VoidTy && - "Pointer to void is not valid, use sbyte* instead!"); + "Pointer to void is not valid, use i8* instead!"); assert(ValueType != Type::LabelTy && "Pointer to label is not valid!"); PointerValType PVT(ValueType, AddressSpace);