From: Reid Spencer Date: Fri, 2 Feb 2007 13:54:55 +0000 (+0000) Subject: Fix a comment that needed to change after SHIFT patch landed. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ebe57e36dff2dc3a7ceea99202bdb9eb6fe938bc;p=oota-llvm.git Fix a comment that needed to change after SHIFT patch landed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33781 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 8a7c0987c74..f13a140b638 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1270,8 +1270,7 @@ void AssemblyWriter::printInstruction(const Instruction &I) { bool PrintAllTypes = false; const Type *TheType = Operand->getType(); - // Shift Left & Right print both types even for Ubyte LHS, and select prints - // types even if all operands are bools. + // Select, Store and ShuffleVector always print all types. if (isa(I) || isa(I) || isa(I)) { PrintAllTypes = true; } else {