1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Fix bug: test/Regression/CBackend/2002-08-26-IndirectCallTest.ll

llvm-svn: 3511
This commit is contained in:
Chris Lattner 2002-08-26 20:50:09 +00:00
parent e39b931b9c
commit 7a75a8e108

View File

@ -778,7 +778,8 @@ void CWriter::visitCallInst(CallInst &I) {
const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
const Type *RetTy = FTy->getReturnType();
Out << getValueName(I.getOperand(0)) << "(";
writeOperand(I.getOperand(0));
Out << "(";
if (I.getNumOperands() > 1) {
writeOperand(I.getOperand(1));