summaryrefslogtreecommitdiff
path: root/lib/VMCore/ConstantFold.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-12-11 02:16:58 +0000
committerChris Lattner <sabre@nondot.org>2006-12-11 02:16:58 +0000
commit36c2451ddbe80dc9644b91fe1d31e7fb82b11e13 (patch)
treecf8196329280678870cf19c02bfc4e3e027ac341 /lib/VMCore/ConstantFold.cpp
parent9f09fa290082333dd84e48f68f5aa486f2b6ad81 (diff)
downloadllvm-36c2451ddbe80dc9644b91fe1d31e7fb82b11e13.tar.gz
llvm-36c2451ddbe80dc9644b91fe1d31e7fb82b11e13.tar.bz2
llvm-36c2451ddbe80dc9644b91fe1d31e7fb82b11e13.tar.xz
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/ConstantFold.cpp')
-rw-r--r--lib/VMCore/ConstantFold.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp
index 97a55cbcf7..b8001506f3 100644
--- a/lib/VMCore/ConstantFold.cpp
+++ b/lib/VMCore/ConstantFold.cpp
@@ -1156,7 +1156,7 @@ static int IdxCompare(Constant *C1, Constant *C2, const Type *ElTy) {
/// evaluateRelation - This function determines if there is anything we can
/// decide about the two constants provided. This doesn't need to handle simple
/// things like integer comparisons, but should instead handle ConstantExprs
-/// and GlobalValuess. If we can determine that the two constants have a
+/// and GlobalValues. If we can determine that the two constants have a
/// particular relation to each other, we should return the corresponding SetCC
/// code, otherwise return Instruction::BinaryOpsEnd.
///