Fix a typo in a comment.
authorDan Gohman <gohman@apple.com>
Thu, 7 Feb 2008 02:30:40 +0000 (02:30 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 7 Feb 2008 02:30:40 +0000 (02:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46836 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Constants.cpp

index 0b8ba418957bf1376801edc7362d2e7e2cdf5532..bd528b0a250e3cb6bb76f5b23ae83bee361832c3 100644 (file)
@@ -225,7 +225,7 @@ ConstantInt *ConstantInt::get(const Type *Ty, uint64_t V, bool isSigned) {
 }
 
 // Get a ConstantInt from an APInt. Note that the value stored in the DenseMap 
-// as the key, is a DensMapAPIntKeyInfo::KeyTy which has provided the
+// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
 // operator== and operator!= to ensure that the DenseMap doesn't attempt to
 // compare APInt's of different widths, which would violate an APInt class
 // invariant which generates an assertion.