diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-09-14 00:52:45 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-09-14 00:52:45 +0000 |
commit | 2dadd3ebeed948d24f0ca142afb404a1faa2eb0a (patch) | |
tree | 6c89d8061995e4cee2d10877b4680db460089ff2 | |
parent | 823011606603b43f21a8be900d0ca650b675a9aa (diff) | |
download | bcm5719-llvm-2dadd3ebeed948d24f0ca142afb404a1faa2eb0a.tar.gz bcm5719-llvm-2dadd3ebeed948d24f0ca142afb404a1faa2eb0a.zip |
Fix comment.
llvm-svn: 139678
-rw-r--r-- | clang/lib/CodeGen/CGBuiltin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp index ca2450a8b58..bdf30881127 100644 --- a/clang/lib/CodeGen/CGBuiltin.cpp +++ b/clang/lib/CodeGen/CGBuiltin.cpp @@ -2187,7 +2187,7 @@ Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID, return Builder.CreateCall(F, makeArrayRef(&Ops[0], 2), "palignr"); } - // If palignr is shifting the pair of vectors more than 32 bytes, emit zero. + // If palignr is shifting the pair of vectors more than 16 bytes, emit zero. return llvm::Constant::getNullValue(ConvertType(E->getType())); } case X86::BI__builtin_ia32_palignr128: { |