From: Zoran Jovanovic Date: Wed, 15 Jan 2014 13:17:33 +0000 (+0000) Subject: LL and SC decoder method fix. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=814c8910f20ec0f1c1d0a06676e9f2ce643a0480;p=oota-llvm.git LL and SC decoder method fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199316 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MicroMipsInstrInfo.td b/lib/Target/Mips/MicroMipsInstrInfo.td index ffcf48bf98d..aec4a314f07 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