[llvm-commits] [llvm] r86468 - /llvm/trunk/lib/Target/MSP430/MSP430InstrInfo.td
Anton Korobeynikov
asl at math.spbu.ru
Sun Nov 8 07:32:11 PST 2009
Author: asl
Date: Sun Nov 8 09:32:11 2009
New Revision: 86468
URL: http://llvm.org/viewvc/llvm-project?rev=86468&view=rev
Log:
Print tab before operand of jcc
Modified:
llvm/trunk/lib/Target/MSP430/MSP430InstrInfo.td
Modified: llvm/trunk/lib/Target/MSP430/MSP430InstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/MSP430/MSP430InstrInfo.td?rev=86468&r1=86467&r2=86468&view=diff
==============================================================================
--- llvm/trunk/lib/Target/MSP430/MSP430InstrInfo.td (original)
+++ llvm/trunk/lib/Target/MSP430/MSP430InstrInfo.td Sun Nov 8 09:32:11 2009
@@ -142,7 +142,7 @@
// 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
More information about the llvm-commits
mailing list