diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-02 13:54:55 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-02 13:54:55 +0000 |
| commit | 0cdd04fa90f30c973face1a711c8aaa76b6dbf4e (patch) | |
| tree | 799b0f3667f23b6106e8f69f2417f24066c79063 | |
| parent | fda6550545008e763be2e82dd908afa35ccd1dd7 (diff) | |
| download | bcm5719-llvm-0cdd04fa90f30c973face1a711c8aaa76b6dbf4e.tar.gz bcm5719-llvm-0cdd04fa90f30c973face1a711c8aaa76b6dbf4e.zip | |
Fix a comment that needed to change after SHIFT patch landed.
llvm-svn: 33781
| -rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 8a7c0987c74..f13a140b638 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/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<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)) { PrintAllTypes = true; } else { |

