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:
parent
e39b931b9c
commit
7a75a8e108
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user