From: Meador Inge Date: Mon, 26 Nov 2012 20:37:23 +0000 (+0000) Subject: Fix a comment bug in toascii simplifier X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d6d685985047634e1faf5460321e21d77ec6c1bf;p=oota-llvm.git Fix a comment bug in toascii simplifier When I migrated the toascii simplifier in r168580 Benjamin Kramer noticed a bug in one of the comments that I migrated. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168605 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/SimplifyLibCalls.cpp b/lib/Transforms/Utils/SimplifyLibCalls.cpp index 85de642b1ad..2e494fd1bcf 100644 --- a/lib/Transforms/Utils/SimplifyLibCalls.cpp +++ b/lib/Transforms/Utils/SimplifyLibCalls.cpp @@ -1315,7 +1315,7 @@ struct ToAsciiOpt : public LibCallOptimization { !FT->getParamType(0)->isIntegerTy(32)) return 0; - // isascii(c) -> c & 0x7f + // toascii(c) -> c & 0x7f return B.CreateAnd(CI->getArgOperand(0), ConstantInt::get(CI->getType(),0x7F)); }