diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-11 02:16:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-11 02:16:58 +0000 |
commit | 8410beb12df46c30c1b0f561004eb9103aa38b6f (patch) | |
tree | 577b8b83db6968aec17aeee96007c50ccc249d19 | |
parent | a11aa92e6ba45c8703cb81933c38ce551ab1b95f (diff) | |
download | bcm5719-llvm-8410beb12df46c30c1b0f561004eb9103aa38b6f.tar.gz bcm5719-llvm-8410beb12df46c30c1b0f561004eb9103aa38b6f.zip |
fix typo
llvm-svn: 32428
-rw-r--r-- | llvm/lib/VMCore/ConstantFolding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/ConstantFolding.cpp b/llvm/lib/VMCore/ConstantFolding.cpp index 97a55cbcf7e..b8001506f31 100644 --- a/llvm/lib/VMCore/ConstantFolding.cpp +++ b/llvm/lib/VMCore/ConstantFolding.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. /// |