aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Constants.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-02-07 02:30:40 +0000
committerDan Gohman <gohman@apple.com>2008-02-07 02:30:40 +0000
commitb3f5cfc67015b938df933354d33134221ca5a870 (patch)
treeab6aa4b9c868a44eb54c47a54de9576bec57459e /lib/VMCore/Constants.cpp
parent167b8bc24d4cc2789c682962b123877a73ad0568 (diff)
downloadexternal_llvm-b3f5cfc67015b938df933354d33134221ca5a870.zip
external_llvm-b3f5cfc67015b938df933354d33134221ca5a870.tar.gz
external_llvm-b3f5cfc67015b938df933354d33134221ca5a870.tar.bz2
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46836 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Constants.cpp')
-rw-r--r--lib/VMCore/Constants.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp
index 0b8ba41..bd528b0 100644
--- a/lib/VMCore/Constants.cpp
+++ b/lib/VMCore/Constants.cpp
@@ -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.