From f38fd690ad4a7a432e26822834d8121a39c20069 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 5 Jun 2009 18:34:16 +0000 Subject: [PATCH] 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 --- lib/VMCore/Verifier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.0