Fix a comment that needed to change after SHIFT patch landed.

llvm-svn: 33781
This commit is contained in:
Reid Spencer 2007-02-02 13:54:55 +00:00
parent fda6550545
commit 0cdd04fa90
1 changed files with 1 additions and 2 deletions

View File

@ -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<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)) {
PrintAllTypes = true;
} else {