Write select instructions to bytecode
llvm-svn: 12315
diff --git a/llvm/lib/Bytecode/Writer/InstructionWriter.cpp b/llvm/lib/Bytecode/Writer/InstructionWriter.cpp
index 4b84599..e86b027 100644
--- a/llvm/lib/Bytecode/Writer/InstructionWriter.cpp
+++ b/llvm/lib/Bytecode/Writer/InstructionWriter.cpp
@@ -207,9 +207,10 @@
//
const Type *Ty;
switch (I.getOpcode()) {
+ case Instruction::Select:
case Instruction::Malloc:
case Instruction::Alloca:
- Ty = I.getType(); // Malloc & Alloca ALWAYS want to encode the return type
+ Ty = I.getType(); // These ALWAYS want to encode the return type
break;
case Instruction::Store:
Ty = I.getOperand(1)->getType(); // Encode the pointer type...