Add support for select constant expressions to the CBE, fixing SIOD

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12589 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-04-01 05:28:26 +00:00
parent 0526f01fec
commit 6683dbf32e
2 changed files with 18 additions and 0 deletions

View File

@ -388,6 +388,15 @@ void CWriter::printConstant(Constant *CPV) {
gep_type_end(CPV));
Out << "))";
return;
case Instruction::Select:
Out << "(";
printConstant(CE->getOperand(0));
Out << "?";
printConstant(CE->getOperand(1));
Out << ":";
printConstant(CE->getOperand(2));
Out << ")";
return;
case Instruction::Add:
case Instruction::Sub:
case Instruction::Mul:

View File

@ -388,6 +388,15 @@ void CWriter::printConstant(Constant *CPV) {
gep_type_end(CPV));
Out << "))";
return;
case Instruction::Select:
Out << "(";
printConstant(CE->getOperand(0));
Out << "?";
printConstant(CE->getOperand(1));
Out << ":";
printConstant(CE->getOperand(2));
Out << ")";
return;
case Instruction::Add:
case Instruction::Sub:
case Instruction::Mul: