From: Richard Osborne Date: Wed, 23 Feb 2011 15:20:16 +0000 (+0000) Subject: Fix format for setc instruction. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2254d0eaa1821eb243b9dbcbeaa31c784dc99fa3;p=oota-llvm.git Fix format for setc instruction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126314 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/XCore/XCoreInstrInfo.td b/lib/Target/XCore/XCoreInstrInfo.td index 8806af2a40f..5c7da24ad7b 100644 --- a/lib/Target/XCore/XCoreInstrInfo.td +++ b/lib/Target/XCore/XCoreInstrInfo.td @@ -831,7 +831,7 @@ def CLZ_l2r : _FL2R<(outs GRRegs:$dst), (ins GRRegs:$src), "clz $dst, $src", [(set GRRegs:$dst, (ctlz GRRegs:$src))]>; -def SETC_l2r : _FRU6<(outs), (ins GRRegs:$r, GRRegs:$val), +def SETC_l2r : _FL2R<(outs), (ins GRRegs:$r, GRRegs:$val), "setc res[$r], $val", [(int_xcore_setc GRRegs:$r, GRRegs:$val)]>;