commit | d3f9bc403327201a4cbb416f6627d1c54c0fcac8 | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Mon Oct 26 23:45:59 2009 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Mon Oct 26 23:45:59 2009 +0000 |
tree | 2a5a1de853dae799072711e7ccae8db874d5449a | |
parent | 6b05409548b99af03ebd6f92fee5337dc7ed0dc4 [diff] [blame] |
Change ARM asm strings to separate opcode from operands with a tab instead of a space. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85178 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp index 8719e4c..d017f74 100644 --- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
@@ -419,7 +419,7 @@ printSOImm(O, V1, VerboseAsm, MAI); O << "\n\torr"; printPredicateOperand(MI, 2); - O << " "; + O << "\t"; printOperand(MI, 0); O << ", "; printOperand(MI, 0);