aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMInstrThumb.td
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-08-22 22:00:18 +0000
committerJim Grosbach <grosbach@apple.com>2011-08-22 22:00:18 +0000
commit5e8701002bc53672a4e6a902e385810abe2cf911 (patch)
treefba0e7a788e4e5c51adf69aba2b18ab35bede7f1 /lib/Target/ARM/ARMInstrThumb.td
parent234bccd1947bb06e35dce6312df2daa7ccfff4eb (diff)
downloadexternal_llvm-5e8701002bc53672a4e6a902e385810abe2cf911.zip
external_llvm-5e8701002bc53672a4e6a902e385810abe2cf911.tar.gz
external_llvm-5e8701002bc53672a4e6a902e385810abe2cf911.tar.bz2
Temporarilly mark tMUL as not commutable.
It's not playing nicely in the coalescer with the tied operand. Disable commutability for now while we figure out the deeper fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138278 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrThumb.td')
-rw-r--r--lib/Target/ARM/ARMInstrThumb.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb.td b/lib/Target/ARM/ARMInstrThumb.td
index f58cb34..cfc4a55 100644
--- a/lib/Target/ARM/ARMInstrThumb.td
+++ b/lib/Target/ARM/ARMInstrThumb.td
@@ -1047,7 +1047,7 @@ def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
} // neverHasSideEffects
// Multiply register
-let isCommutable = 1 in
+//let isCommutable = 1 in
def tMUL : // A8.6.105 T1
Thumb1sI<(outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm), AddrModeNone, 2,
IIC_iMUL32, "mul", "\t$Rd, $Rn, $Rm", "$Rm = $Rd",