[llvm-commits] CVS: llvm/lib/VMCore/Constants.cpp Instructions.cpp 
    Misha Brukman 
    brukman at cs.uiuc.edu
       
    Wed Jan 26 22:46:49 PST 2005
    
    
  
Changes in directory llvm/lib/VMCore:
Constants.cpp updated: 1.119 -> 1.120
Instructions.cpp updated: 1.7 -> 1.8
---
Log message:
Fix grammar
---
Diffs of the changes:  (+2 -2)
 Constants.cpp    |    2 +-
 Instructions.cpp |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/VMCore/Constants.cpp
diff -u llvm/lib/VMCore/Constants.cpp:1.119 llvm/lib/VMCore/Constants.cpp:1.120
--- llvm/lib/VMCore/Constants.cpp:1.119	Sat Jan  1 09:59:57 2005
+++ llvm/lib/VMCore/Constants.cpp	Thu Jan 27 00:46:38 2005
@@ -1306,7 +1306,7 @@
   case Instruction::Xor:
     assert(C1->getType() == C2->getType() && "Op types should be identical!");
     assert(C1->getType()->isIntegral() &&
-           "Tried to create an logical operation on a non-integral type!");
+           "Tried to create a logical operation on a non-integral type!");
     break;
   case Instruction::SetLT: case Instruction::SetGT: case Instruction::SetLE:
   case Instruction::SetGE: case Instruction::SetEQ: case Instruction::SetNE:
Index: llvm/lib/VMCore/Instructions.cpp
diff -u llvm/lib/VMCore/Instructions.cpp:1.7 llvm/lib/VMCore/Instructions.cpp:1.8
--- llvm/lib/VMCore/Instructions.cpp:1.7	Thu Nov 18 11:47:13 2004
+++ llvm/lib/VMCore/Instructions.cpp	Thu Jan 27 00:46:38 2005
@@ -561,7 +561,7 @@
     assert(getType() == S1->getType() &&
            "Logical operation should return same type as operands!");
     assert(getType()->isIntegral() &&
-           "Tried to create an logical operation on a non-integral type!");
+           "Tried to create a logical operation on a non-integral type!");
     break;
   case SetLT: case SetGT: case SetLE:
   case SetGE: case SetEQ: case SetNE:
    
    
More information about the llvm-commits
mailing list