writeOperand(I.getOperand(0));
if (I.isVolatile())
- Out << ")";
+ Out << ')';
}
void CWriter::visitStoreInst(StoreInst &I) {
Out << " volatile*)";
}
writeOperand(I.getPointerOperand());
- if (I.isVolatile()) Out << ")";
+ if (I.isVolatile()) Out << ')';
Out << " = ";
writeOperand(I.getOperand(0));
}
writeOperand(I.getOperand(0));
if (I.isVolatile())
- Out << ")";
+ Out << ')';
}
void CWriter::visitStoreInst(StoreInst &I) {
Out << " volatile*)";
}
writeOperand(I.getPointerOperand());
- if (I.isVolatile()) Out << ")";
+ if (I.isVolatile()) Out << ')';
Out << " = ";
writeOperand(I.getOperand(0));
}