mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Stop annoying warnings about mismatched types with the argument of a free
implement more constant expressions so that 176.gcc compiles with the CBE llvm-svn: 7847
This commit is contained in:
parent
f3d5d00f51
commit
01af3eca82
@ -369,16 +369,32 @@ void CWriter::printConstant(Constant *CPV) {
|
|||||||
Out << "))";
|
Out << "))";
|
||||||
return;
|
return;
|
||||||
case Instruction::Add:
|
case Instruction::Add:
|
||||||
Out << "(";
|
|
||||||
printConstant(CE->getOperand(0));
|
|
||||||
Out << " + ";
|
|
||||||
printConstant(CE->getOperand(1));
|
|
||||||
Out << ")";
|
|
||||||
return;
|
|
||||||
case Instruction::Sub:
|
case Instruction::Sub:
|
||||||
|
case Instruction::Mul:
|
||||||
|
case Instruction::Div:
|
||||||
|
case Instruction::Rem:
|
||||||
|
case Instruction::SetEQ:
|
||||||
|
case Instruction::SetNE:
|
||||||
|
case Instruction::SetLT:
|
||||||
|
case Instruction::SetLE:
|
||||||
|
case Instruction::SetGT:
|
||||||
|
case Instruction::SetGE:
|
||||||
Out << "(";
|
Out << "(";
|
||||||
printConstant(CE->getOperand(0));
|
printConstant(CE->getOperand(0));
|
||||||
Out << " - ";
|
switch (CE->getOpcode()) {
|
||||||
|
case Instruction::Add: Out << " + "; break;
|
||||||
|
case Instruction::Sub: Out << " - "; break;
|
||||||
|
case Instruction::Mul: Out << " * "; break;
|
||||||
|
case Instruction::Div: Out << " / "; break;
|
||||||
|
case Instruction::Rem: Out << " % "; break;
|
||||||
|
case Instruction::SetEQ: Out << " == "; break;
|
||||||
|
case Instruction::SetNE: Out << " != "; break;
|
||||||
|
case Instruction::SetLT: Out << " < "; break;
|
||||||
|
case Instruction::SetLE: Out << " <= "; break;
|
||||||
|
case Instruction::SetGT: Out << " > "; break;
|
||||||
|
case Instruction::SetGE: Out << " >= "; break;
|
||||||
|
default: assert(0 && "Illegal opcode here!");
|
||||||
|
}
|
||||||
printConstant(CE->getOperand(1));
|
printConstant(CE->getOperand(1));
|
||||||
Out << ")";
|
Out << ")";
|
||||||
return;
|
return;
|
||||||
@ -1186,7 +1202,7 @@ void CWriter::visitAllocaInst(AllocaInst &I) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CWriter::visitFreeInst(FreeInst &I) {
|
void CWriter::visitFreeInst(FreeInst &I) {
|
||||||
Out << "free(";
|
Out << "free((char*)";
|
||||||
writeOperand(I.getOperand(0));
|
writeOperand(I.getOperand(0));
|
||||||
Out << ")";
|
Out << ")";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user