diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-05 18:34:16 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-05 18:34:16 +0000 |
commit | 2bde90b3ee6a391dc6902d2339e9e74485be2b90 (patch) | |
tree | a27396998ac42fe9c752abd7c1eb56ca8500ed8e | |
parent | 7fce2cf0ba1d3f0cc45721df2b98abc0731745b3 (diff) | |
download | bcm5719-llvm-2bde90b3ee6a391dc6902d2339e9e74485be2b90.tar.gz bcm5719-llvm-2bde90b3ee6a391dc6902d2339e9e74485be2b90.zip |
Fix a copy+pasto in an assertion string that Jay Foad noticed.
llvm-svn: 72953
-rw-r--r-- | llvm/lib/VMCore/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Verifier.cpp b/llvm/lib/VMCore/Verifier.cpp index 0ab9b2df9b2..b047d0c9fb6 100644 --- a/llvm/lib/VMCore/Verifier.cpp +++ b/llvm/lib/VMCore/Verifier.cpp @@ -1093,7 +1093,7 @@ void Verifier::visitBinaryOperator(BinaryOperator &B) { 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); |