[llvm-commits] CVS: llvm/lib/VMCore/Verifier.cpp

Christopher Lattner lattner at cs.uiuc.edu
Mon Sep 9 23:54:00 PDT 2002


Changes in directory llvm/lib/VMCore:

Verifier.cpp updated: 1.36 -> 1.37

---
Log message:

Fix typeo in assertion message


---
Diffs of the changes:

Index: llvm/lib/VMCore/Verifier.cpp
diff -u llvm/lib/VMCore/Verifier.cpp:1.36 llvm/lib/VMCore/Verifier.cpp:1.37
--- llvm/lib/VMCore/Verifier.cpp:1.36	Mon Sep  9 15:26:04 2002
+++ llvm/lib/VMCore/Verifier.cpp	Mon Sep  9 23:52:59 2002
@@ -336,7 +336,7 @@
             "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);





More information about the llvm-commits mailing list