diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-11-08 15:32:11 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-11-08 15:32:11 +0000 |
commit | 764cfaabd2cf95385a64cc67440d9d7b3cd79028 (patch) | |
tree | 0a72bb6cd71272dc511210105ec281ebd3379f54 /lib/Target | |
parent | 52f28e9b63b862fa3dafd9330eb76d5874c21574 (diff) | |
download | external_llvm-764cfaabd2cf95385a64cc67440d9d7b3cd79028.zip external_llvm-764cfaabd2cf95385a64cc67440d9d7b3cd79028.tar.gz external_llvm-764cfaabd2cf95385a64cc67440d9d7b3cd79028.tar.bz2 |
Print tab before operand of jcc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86468 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/MSP430/MSP430InstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/MSP430/MSP430InstrInfo.td b/lib/Target/MSP430/MSP430InstrInfo.td index aab0298..8f3e8b0 100644 --- a/lib/Target/MSP430/MSP430InstrInfo.td +++ b/lib/Target/MSP430/MSP430InstrInfo.td @@ -142,7 +142,7 @@ let isBarrier = 1 in // Conditional branches let Uses = [SRW] in def JCC : Pseudo<(outs), (ins brtarget:$dst, cc:$cc), - "j$cc $dst", + "j$cc\t$dst", [(MSP430brcc bb:$dst, imm:$cc)]>; } // isBranch, isTerminator |