From: Evgeniy Stepanov Date: Tue, 17 Jun 2014 11:26:00 +0000 (+0000) Subject: [msan] Fix a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3a001aab4d743b3557854d205e12bd4eb02d6f2b;p=oota-llvm.git [msan] Fix a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211094 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Instrumentation/MemorySanitizer.cpp b/lib/Transforms/Instrumentation/MemorySanitizer.cpp index 38a3fbb21f8..e71e540aa82 100644 --- a/lib/Transforms/Instrumentation/MemorySanitizer.cpp +++ b/lib/Transforms/Instrumentation/MemorySanitizer.cpp @@ -2018,10 +2018,10 @@ struct MemorySanitizerVisitor : public InstVisitor { } } - // \brief Instrument vector shift instrinsic. + // \brief Instrument vector pack instrinsic. // // This function instruments intrinsics like x86_mmx_packsswb, that - // packs elements of 2 input vectors into half as much bits with saturation. + // packs elements of 2 input vectors into half as many bits with saturation. // Shadow is propagated with the signed variant of the same intrinsic applied // to sext(Sa != zeroinitializer), sext(Sb != zeroinitializer). // EltSizeInBits is used only for x86mmx arguments.