diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-06-17 11:26:00 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-06-17 11:26:00 +0000 |
commit | 5d97293e26f32a3cc404f2d6cbc009ba8ab33669 (patch) | |
tree | d3016e3789d6a2a7b1b88cb9237e6f58916dd821 /llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp | |
parent | ebdd0a52e1c3e197bc95024a8597b20670c318fe (diff) | |
download | bcm5719-llvm-5d97293e26f32a3cc404f2d6cbc009ba8ab33669.tar.gz bcm5719-llvm-5d97293e26f32a3cc404f2d6cbc009ba8ab33669.zip |
[msan] Fix a comment.
llvm-svn: 211094
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp b/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp index 38a3fbb21f8..e71e540aa82 100644 --- a/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp @@ -2018,10 +2018,10 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> { } } - // \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. |