diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-01-27 06:46:38 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-01-27 06:46:38 +0000 |
commit | 1bae291cb9cafc8a8c86538449b78a575ed9834a (patch) | |
tree | 5b2acc0331b004d8db75ac9530b5ec2a5689653a /lib/VMCore/Instructions.cpp | |
parent | 3d65d31e20077369c105d9845acbc1dcb4866c6c (diff) |
Fix grammar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Instructions.cpp')
-rw-r--r-- | lib/VMCore/Instructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp index 29418ce857..6ebf85856f 100644 --- a/lib/VMCore/Instructions.cpp +++ b/lib/VMCore/Instructions.cpp @@ -561,7 +561,7 @@ void BinaryOperator::init(BinaryOps iType, Value *S1, Value *S2) 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: |