From: Dan Gohman Date: Fri, 5 Jun 2009 18:34:16 +0000 (+0000) Subject: Fix a copy+pasto in an assertion string that Jay Foad noticed. X-Git-Tag: android-x86-6.0-r1~1003^2~20171 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f38fd690ad4a7a432e26822834d8121a39c20069;p=android-x86%2Fexternal-llvm.git 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 --- diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 0ab9b2df9b2..b047d0c9fb6 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -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);