From 3a001aab4d743b3557854d205e12bd4eb02d6f2b Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Tue, 17 Jun 2014 11:26:00 +0000 Subject: [PATCH] [msan] Fix a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211094 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Instrumentation/MemorySanitizer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 2.50.1