Fix a copy+pasto in an assertion string that Jay Foad noticed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72953 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-06-05 18:34:16 +00:00
parent 87d59e49e9
commit f38fd690ad

View File

@ -1093,7 +1093,7 @@ void Verifier::visitBinaryOperator(BinaryOperator &B) {
case Instruction::FRem:
Assert1(B.getType()->isFPOrFPVector(),
"Floating-point arithmetic operators only work with "
"integral types!", &B);
"floating-point types!", &B);
Assert1(B.getType() == B.getOperand(0)->getType(),
"Floating-point arithmetic operators must have same type "
"for operands and result!", &B);