Need a comma after imp-use.

llvm-svn: 84749
This commit is contained in:
Evan Cheng 2009-10-21 07:56:02 +00:00
parent 72cdcacb02
commit f781bd8947
1 changed files with 3 additions and 1 deletions

View File

@ -220,8 +220,10 @@ void MachineOperand::print(raw_ostream &OS, const TargetMachine *TM) const {
OS << "imp-";
OS << "def";
NeedComma = true;
} else if (isImplicit())
} else if (isImplicit()) {
OS << "imp-use";
NeedComma = true;
}
if (isKill() || isDead() || isUndef()) {
if (NeedComma) OS << ',';