projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf8ef3f
)
Fix printing: je => jeq
author
Anton Korobeynikov
<asl@math.spbu.ru>
Sun, 3 May 2009 13:16:54 +0000
(13:16 +0000)
committer
Anton Korobeynikov
<asl@math.spbu.ru>
Sun, 3 May 2009 13:16:54 +0000
(13:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70760
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/MSP430/MSP430AsmPrinter.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/MSP430/MSP430AsmPrinter.cpp
b/lib/Target/MSP430/MSP430AsmPrinter.cpp
index 0d5481b1c2748bbc2cf8f63e852ebb0a13c8e3ae..7c1871131da2f72807a65559cfe38ae2fc9067ba 100644
(file)
--- a/
lib/Target/MSP430/MSP430AsmPrinter.cpp
+++ b/
lib/Target/MSP430/MSP430AsmPrinter.cpp
@@
-200,7
+200,7
@@
void MSP430AsmPrinter::printCCOperand(const MachineInstr *MI, int OpNum) {
assert(0 && "Unsupported CC code");
break;
case MSP430::COND_E:
- O <<
'e'
;
+ O <<
"eq"
;
break;
case MSP430::COND_NE:
O << "ne";