From ce556d908bb4273a2c8a4382edc1463db439d714 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Tue, 4 Mar 2008 22:05:14 +0000 Subject: [PATCH] Print types for all ret operands. llvm-svn: 47911 --- llvm/lib/VMCore/AsmWriter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 595f478c72a1..64119eddc82e 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/lib/VMCore/AsmWriter.cpp @@ -1417,7 +1417,8 @@ void AssemblyWriter::printInstruction(const Instruction &I) { const Type *TheType = Operand->getType(); // Select, Store and ShuffleVector always print all types. - if (isa(I) || isa(I) || isa(I)) { + if (isa(I) || isa(I) || isa(I) + || isa(I)) { PrintAllTypes = true; } else { for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) { -- GitLab