[llvm-commits] [llvm] r72953 - /llvm/trunk/lib/VMCore/Verifier.cpp

Dan Gohman gohman at apple.com
Fri Jun 5 11:34:16 PDT 2009


Author: djg
Date: Fri Jun  5 13:34:16 2009
New Revision: 72953

URL: http://llvm.org/viewvc/llvm-project?rev=72953&view=rev
Log:
Fix a copy+pasto in an assertion string that Jay Foad noticed.

Modified:
    llvm/trunk/lib/VMCore/Verifier.cpp

Modified: llvm/trunk/lib/VMCore/Verifier.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Verifier.cpp?rev=72953&r1=72952&r2=72953&view=diff

==============================================================================
--- llvm/trunk/lib/VMCore/Verifier.cpp (original)
+++ llvm/trunk/lib/VMCore/Verifier.cpp Fri Jun  5 13:34:16 2009
@@ -1093,7 +1093,7 @@
   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);





More information about the llvm-commits mailing list