mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
Need a comma after imp-use.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84749 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7bb3862895
commit
5affca0763
@ -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 << ',';
|
||||
|
Loading…
x
Reference in New Issue
Block a user