mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-01 15:40:46 +00:00
fix build with non-buggy compilers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36621 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a7c49aac98
commit
60ce9b5a01
@ -571,7 +571,7 @@ static void WriteInstruction(const Instruction &I, ValueEnumerator &VE,
|
|||||||
for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
|
for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
|
||||||
Vals.push_back(VE.getValueID(I.getOperand(i)));
|
Vals.push_back(VE.getValueID(I.getOperand(i)));
|
||||||
break;
|
break;
|
||||||
case Instruction::Invoke:
|
case Instruction::Invoke: {
|
||||||
Code = bitc::FUNC_CODE_INST_INVOKE;
|
Code = bitc::FUNC_CODE_INST_INVOKE;
|
||||||
// FIXME: param attrs
|
// FIXME: param attrs
|
||||||
Vals.push_back(VE.getTypeID(I.getOperand(0)->getType()));
|
Vals.push_back(VE.getTypeID(I.getOperand(0)->getType()));
|
||||||
@ -596,6 +596,7 @@ static void WriteInstruction(const Instruction &I, ValueEnumerator &VE,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case Instruction::Unwind:
|
case Instruction::Unwind:
|
||||||
Code = bitc::FUNC_CODE_INST_UNWIND;
|
Code = bitc::FUNC_CODE_INST_UNWIND;
|
||||||
break;
|
break;
|
||||||
@ -658,18 +659,18 @@ static void WriteInstruction(const Instruction &I, ValueEnumerator &VE,
|
|||||||
for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
|
for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
|
||||||
Vals.push_back(VE.getValueID(I.getOperand(i+1))); // fixed param.
|
Vals.push_back(VE.getValueID(I.getOperand(i+1))); // fixed param.
|
||||||
|
|
||||||
// Emit type/value pairs for varargs params.
|
// Emit type/value pairs for varargs params.
|
||||||
if (FTy->isVarArg()) {
|
if (FTy->isVarArg()) {
|
||||||
unsigned NumVarargs = I.getNumOperands()-1-FTy->getNumParams();
|
unsigned NumVarargs = I.getNumOperands()-1-FTy->getNumParams();
|
||||||
Vals.push_back(NumVarargs);
|
Vals.push_back(NumVarargs);
|
||||||
for (unsigned i = I.getNumOperands()-NumVarargs, e = I.getNumOperands();
|
for (unsigned i = I.getNumOperands()-NumVarargs, e = I.getNumOperands();
|
||||||
i != e; ++i) {
|
i != e; ++i) {
|
||||||
Vals.push_back(VE.getTypeID(I.getOperand(i)->getType()));
|
Vals.push_back(VE.getTypeID(I.getOperand(i)->getType()));
|
||||||
Vals.push_back(VE.getValueID(I.getOperand(i)));
|
Vals.push_back(VE.getValueID(I.getOperand(i)));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case Instruction::VAArg:
|
case Instruction::VAArg:
|
||||||
Code = bitc::FUNC_CODE_INST_VAARG;
|
Code = bitc::FUNC_CODE_INST_VAARG;
|
||||||
|
Loading…
Reference in New Issue
Block a user