From 814c8910f20ec0f1c1d0a06676e9f2ce643a0480 Mon Sep 17 00:00:00 2001 From: Zoran Jovanovic Date: Wed, 15 Jan 2014 13:17:33 +0000 Subject: LL and SC decoder method fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199316 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/MicroMipsInstrInfo.td | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/Target/Mips/MicroMipsInstrInfo.td') diff --git a/lib/Target/Mips/MicroMipsInstrInfo.td b/lib/Target/Mips/MicroMipsInstrInfo.td index ffcf48bf98..aec4a314f0 100644 --- a/lib/Target/Mips/MicroMipsInstrInfo.td +++ b/lib/Target/Mips/MicroMipsInstrInfo.td @@ -48,16 +48,15 @@ class StoreLeftRightMM : InstSE<(outs RO:$rt), (ins mem_mm_12:$addr), !strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> { - let DecoderMethod = "DecodeMem"; + let DecoderMethod = "DecodeMemMMImm12"; let mayLoad = 1; } class SCBaseMM : - InstSE<(outs RO:$dst), (ins RO:$rt, mem_mm_12:$addr), + InstSE<(outs), (ins RO:$rt, mem_mm_12:$addr), !strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> { - let DecoderMethod = "DecodeMem"; + let DecoderMethod = "DecodeMemMMImm12"; let mayStore = 1; - let Constraints = "$rt = $dst"; } class LoadMM