Fix typeo in assertion message
authorChris Lattner <sabre@nondot.org>
Tue, 10 Sep 2002 04:52:59 +0000 (04:52 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 10 Sep 2002 04:52:59 +0000 (04:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3641 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Verifier.cpp

index ae49491c793eede696bfde530229e5808a0881fb..456d19291b1deb659a01ed38667bf1456d8148f1 100644 (file)
@@ -336,7 +336,7 @@ void Verifier::visitBinaryOperator(BinaryOperator &B) {
             "Arithmetic operators must have same type for operands and result!",
             &B);
     Assert1(B.getType()->isInteger() || B.getType()->isFloatingPoint(),
-            "Arithmetic oeprators must have integer or fp type!", &B);
+            "Arithmetic operators must have integer or fp type!", &B);
   }
   
   visitInstruction(B);